이 튜토리얼에서는 C++에서 순서 없는 쌍 맵을 만드는 방법을 이해하는 프로그램에 대해 설명합니다.
정렬되지 않은 맵은 기본적으로 쌍에 대한 해시 함수를 포함하지 않는 맵입니다. 특정 쌍에 대한 해시 값을 원하면 명시적으로 전달해야 합니다.
예시
#include <bits/stdc++.h> using namespace std; //to hash any given pair struct hash_pair { template <class T1, class T2> size_t operator()(const pair<T1, T2>& p) const{ auto hash1 = hash<T1>{}(p.first); auto hash2 = hash<T2>{}(p.second); return hash1 ^ hash2; } }; int main(){ //explicitly sending hash function unordered_map<pair<int, int>, bool, hash_pair> um; //creating some pairs to be used as keys pair<int, int> p1(1000, 2000); pair<int, int> p2(2000, 3000); pair<int, int> p3(2005, 3005); um[p1] = true; um[p2] = false; um[p3] = true; cout << "Contents of the unordered_map : \n"; for (auto p : um) cout << "[" << (p.first).first << ", "<< (p.first).second << "] ==> " << p.second << "\n"; return 0; }
출력
Contents of the unordered_map : [1000, 2000] ==> 1 [2005, 3005] ==> 1 [2000, 3000] ==> 0