show/hide this revision's text 5 edited body

The definition of map is:
map<Key, Data, Compare, Alloc>

Where the last two template parameters default too:
Compare: less<Key>
Alloc:        allocator<value_type>

When inserting new values into a map. The new value (valueToInsert) is compared against the old values in order (N.B. This is not sequential search, the standard guarantees a max insert complexity of O(log(N)) ) until Compare(value,ValueToInsert) returns true. Because you are using 'const char*' as the key. The Compare Object is using Lessless<const char*> this class just does a < on the two values. So in effect you are comparing the pointer values (not the string) therefore the order is random (as you don't know where the compiler will put strings.

There are two possible solutions:

  • Change the type of the key so that it compares the string values.
  • Define another Compare Type that does what you need.

Personally I (like Chris) would just use a std::string because < operator used on strings returns a comparison based on the string content. But for arguments sake we can just define a Compare type.

struct StringLess
{
    bool operator()(const char* const& left,const char* const& right) const
    {
        return strcmp(left,right) < 0;
    }
};

///

typedef std::map<const char*, int,StringLess> TMyMap;
show/hide this revision's text 4 added 97 characters in body

The definition of map is:
map<Key, Data, Compare, Alloc>

Where the last two template parameters default too:
Compare: less<Key>
Alloc:        allocator<value_type>

When inserting new values into a map. The new value (valueToInsert) is compared against each of the old values (in order (N.B. This is not sequential search, the standard guarantees a max insert complexity of O(log(N)) ) until Compare(value,ValueToInsert) returns true. Because you are using 'const char*' as the key. The Compare Object is using Less<const char*> this class just does a < on the two values. So in effect you are comparing the pointer values (not the string) therefore the order is random (as you don't know where the compiler will put strings.

There are two possible solutions:

  • Change the type of the key so that it compares the string values.
  • Define another Compare Type that does what you need.

Personally I (like Chris) would just use a std::string because < operator used on strings returns a comparison based on the string content. But for arguments sake we can just define a Compare type.

struct StringLess
{
    bool operator()(const char* const& left,const char* const& right) const
    {
        return strcmp(left,right) < 0;
    }
};

///

typedef std::map<const char*, int,StringLess> TMyMap;
show/hide this revision's text 3 deleted 29 characters in body

To Expand of 'Chris'

The definition of map is:
map<Key, Data, Compare, Alloc>

Where the last two template parameters default too:
Compare: less<Key>
Alloc:        allocator<value_type>

When inserting new values into a map. The new value (valueToInsert) is compared against each of the old values (in order) until Compare(value,ValueToInsert) returns true. Because you are using 'const char*' as the key. The Compare Object is using Less<const char*> this class just does a < on the two values. So in effect you are comparing the pointer values (not the string) therefore the order is random (as you don't know where the compiler will put strings.

There are two possible solutions:

  • Change the type of the key so that it compares the string values.
  • Define another Compare Type that does what you need.

Personally I (like Chris) would just use a std::string because < operator used on strings returns a comparison based on the string content. But for arguments sake we can just define a Compare type.

struct StringLess
{
    bool operator()(const char* const& left,const char* const& right) const
    {
        return strcmp(left,right) < 0;
    }
};

///

typedef std::map<const char*, int,StringLess> TMyMap;
show/hide this revision's text 2 added 22 characters in body
show/hide this revision's text 1