vote up 3 vote down star

I have a std::map that I'm using to store values for x & y coordinates. Currently I'm creating a std::string with the two coordinates (ie "12x45") and using it as a key. This doesn't seem like the best way to do it.

My other thoughts were to use an int64 and shove the two int32s into it and use it as a key.

Or to use a class with the two coordinates. What are the requirements on a class that is to be used as the key?

What is the best way to do this? I'd rather not use a map of maps.

flag

I should mention my data is very spare, so I don't want to use arrays or vectors. My data ranges from -250000 to 250000 but I'll only have a few thousand points at the most. – FigBug Jul 11 at 0:15
1  
You should edit your question to contain that so people don't miss it. – GMan Jul 11 at 0:21
Or not: I think people read comments. – ChrisW Jul 11 at 0:32
3  
but they read the question first. And it's a lot easier to get an overview if all the necessary info is in the question, than if you have to correlate it with subsequent updates posted separately in the comments – jalf Jul 11 at 0:37

5 Answers

vote up 19 vote down check

Use std::pair<int32,int32> for the key:

std::map<std::pair<int,int>, int> myMap;

myMap[std::make_pair(10,20)] = 25;
std::cout << myMap[std::make_pair(10,20)] << std::endl;
link|flag
vote up 4 vote down

I usually solve this kind of problem like this:

struct Point
{
public:
    Point() : x(0), y(0) {}
    Point(int inX, int inY) : x(inX), y(inY) {}
    int x, y;
};

bool operator <(const Point & lhs, const Point & rhs) // lhs = left-hand side
                                                      // rhs = right-hand side
{
    if (lhs.x != rhs.x)
    {
    	return lhs.x < rhs.x;
    }
    else
    {
    	return lhs.y < rhs.y;
    }
}
int main()
{
    Point p1(0, 1);
    Point p2(0, 2);
    std::map<Point, std::string> mapping;
    mapping[p1] = "p1";
    mapping.insert(std::make_pair(p2, "p2"));
    return 0;
}
link|flag
2  
This is explicit, which is good. Just note this is the same as typedef std::pair<int, int> Point; – GMan Jul 11 at 0:28
2  
Heh, until now I didn't know that std::pair has operator< defined. Love SO! – StackedCrooked Jul 11 at 0:33
vote up 1 vote down

Boost has a map container that uses one or more indices.

Multi Index Map

link|flag
vote up 1 vote down

What are the requirements on a class that is to be used as the key?

The map needs to be able to tell whether one key's value is less than another key's value: by default this means that (key1 < key2) must be a valid boolean expression, i.e. that the key type should implement the 'less than' operator.

The map template also implements an overloaded constructor which lets you pass-in a reference to a function object of type key_compare, which can implement the comparison operator: so that alternatively the comparison can be implemented as a method of this external function object, instead of needing to be baked in to whatever type your key is of.

link|flag
vote up 0 vote down

Use std::pair. Better even use QHash,int> if you have many of such mappings.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.