Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7861861
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T22:54:20+00:00 2026-06-02T22:54:20+00:00

I have a class called set that is a dynamically allocated array in the

  • 0

I have a class called set that is a dynamically allocated array in the inside that acts as a container with the required overloaded operators. This array (1D) stores a (astronomically large, at times) number of integers which I sort with std::sort when the entire set is inserted into this array (much faster than using std::set). These sets are put into std::map where they act as a key to a double, which gets incremented when the std::map already has the set and if the current set is not in the std::map container then it gets inserted with the counter “0”. I tried to overload operator< since std::map requires it. But its causing a segmentation fault. The first member of the array (named arr) stores the number of integers in the set aka total array length is arr[0]+1.

The reason why Im not using vector or the new array type is because I run fast out of RAM (64GB), these sets are at size 2^10 to 2^11 at peak moments (generating subsets) so I want to create my own version of a vector with minimum space overhead.

bool operator<(const set& s1, const set& s2)
{
    if (s1.arr[0] < s2.arr[0])
        return true;
    else if (s1.arr[0] > s2.arr[0])
        return false;

    if (s1.arr[0] == s2.arr[0])
    {
        for (int i = 1; i < s1.arr[0]+1; i++)
        {
            if (s1.arr[i] > s2.arr[i]) return false;
        }
    }
    return true;

}

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T22:54:22+00:00Added an answer on June 2, 2026 at 10:54 pm

    You should change your inner loop comparison akin to your length conparison:

        for (int i = 1; i < s1.arr[0]+1; i++)
        {
            if (s1.arr[i] < s2.arr[i])
                return true;
            else if (s1.arr[i] > s2.arr[i])
                return false;
        }
    

    That way, your comparison operator will implement a strict weak ordering. Your original operator did not, for example, (2 0 2) is incomparable with (2 1 1), (2 1 1) is incomparable with (2 0 3), but (2 0 2) < (2 0 3) which breaks the transitivity of equivalence.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have this class called MemoryManager, it is supposed to implement a simple smart
I have a class called UserInfo that contains details about a given user. There
I have a class called Question that has a property called Type. Based on
I have this class called SiteAsyncDownload.cs Here's the code: public class SiteAsyncDownloader { WebClient
I have a class called MyClass This class inherits IEquatable and implements equals the
I have a class called Sprite, and ballSprite is an instance of that class.
I have a class called MainGame, which is defined like this in my .h:
I have a class called DataStructures where I have a set of public static
I have a class called forest and a property called fixedPositions that stores 100
I have a class called LoanApplication, and it has a collection property set up

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.