пара <int, int> пара как ключ проблемы unordered_map - PullRequest
17 голосов
/ 02 февраля 2011

Мой код:

 typedef pair<int,int> Pair
  tr1::unordered_map<Pair,bool> h;
  h.insert(make_pair(Pair(0,0),true));

Erorr

 undefined reference to `std::tr1::hash<std::pair<int, int> >::operator()(std::pair<int, int>) const'

Что-то, что мне нужно исправить?

спасибо

Ответы [ 2 ]

23 голосов
/ 02 февраля 2011

Это происходит потому, что нет специализации для std::tr1::hash<Key> с Key = std::pair<int, int>.Вы должны специализироваться std::tr1::hash<Key> с Key = std::pair<int, int> перед объявлением tr1::unordered_map<Pair,bool> h;.Это происходит потому, что std не знает, как хешировать pair<int, int>.

. Ниже приведен пример того, как специализироваться std::tr1::hash<>

template <>
struct std::tr1::hash<std::pair<int, int> > {
public:
        size_t operator()(std::pair<int, int> x) const throw() {
             size_t h = SOMETHING;//something with x   
             return h;
        }
};
0 голосов
/ 17 сентября 2017

столкнулся с той же проблемой:

unordered_map <pair<x, y>, z> m1;

Несколько обходных путей:

unordered_map <stringxy, z> m1;
// the first and second of the pair merged to a string
//   though string parsing may be required, looks same complexity overall

unordered_multimap <x, pair<y, z>> m1;
// second of the pair of the key went into value.  
//   time complexity slightly increases

deque<deque<x>> d1;
// here x & y are of same type, z is stored as: d1[x][y] = z
//   space required is x * y, however time complexity is O(1)
...