지도에 대한 나만의 비교기를 어떻게 만들 수 있습니까?
typedef map<string, string> myMap;
에 새 쌍을 삽입 할 때 myMap
키 string
를 사용하여 자체 문자열 비교기로 비교합니다. 해당 비교기를 재정의 할 수 있습니까? 예를 들어 string
알파벳이 아닌 길이로 키를 비교하고 싶습니다 . 아니면지도를 정렬하는 다른 방법이 있습니까?
std::map
최대 4 개의 템플릿 유형 인수를 취하며 세 번째는 비교기입니다. 예 :
struct cmpByStringLength {
bool operator()(const std::string& a, const std::string& b) const {
return a.length() < b.length();
}
};
// ...
std::map<std::string, std::string, cmpByStringLength> myMap;
또는 map
s constructor에 비교기를 전달할 수도 있습니다 .
그러나 길이로 비교할 때 맵에서 각 길이의 문자열 하나만 키로 가질 수 있습니다.
예,의 세 번째 템플릿 매개 변수 map
는 이진 술어 인 비교기 를 지정합니다. 예:
struct ByLength : public std::binary_function<string, string, bool>
{
bool operator()(const string& lhs, const string& rhs) const
{
return lhs.length() < rhs.length();
}
};
int main()
{
typedef map<string, string, ByLength> lenmap;
lenmap mymap;
mymap["one"] = "one";
mymap["a"] = "a";
mymap["fewbahr"] = "foobar";
for( lenmap::const_iterator it = mymap.begin(), end = mymap.end(); it != end; ++it )
cout << it->first << "\n";
}
C ++ 11 이후 로 비교기 구조체를 정의하는 대신 람다 식을 사용할 수도 있습니다 .
auto comp = [](const string& a, const string& b) { return a.length() < b.length(); };
map<string, string, decltype(comp)> my_map(comp);
my_map["1"] = "a";
my_map["three"] = "b";
my_map["two"] = "c";
my_map["fouuur"] = "d";
for(auto const &kv : my_map)
cout << kv.first << endl;
산출:
1
2
3
fouuur
Georg의 답변에 대한 마지막 메모를 반복하고 싶습니다. 길이로 비교할 때 맵에서 각 길이의 문자열 하나만 키로 가질 수 있습니다.
비교 함수에 대한 포인터 유형을지도에 세 번째 유형으로 지정하고지도 생성자에 대한 함수 포인터를 제공합니다.
map<keyType, valueType, typeOfPointerToFunction> mapName(pointerToComparisonFunction);
(A)에 비교 함수를 제공하기 위해 아래의 예에서 보면 받아 map
함께 vector
키 같이 반복자 int
값으로한다.
#include "headers.h"
bool int_vector_iter_comp(const vector<int>::iterator iter1, const vector<int>::iterator iter2) {
return *iter1 < *iter2;
}
int main() {
// Without providing custom comparison function
map<vector<int>::iterator, int> default_comparison;
// Providing custom comparison function
// Basic version
map<vector<int>::iterator, int,
bool (*)(const vector<int>::iterator iter1, const vector<int>::iterator iter2)>
basic(int_vector_iter_comp);
// use decltype
map<vector<int>::iterator, int, decltype(int_vector_iter_comp)*> with_decltype(&int_vector_iter_comp);
// Use type alias or using
typedef bool my_predicate(const vector<int>::iterator iter1, const vector<int>::iterator iter2);
map<vector<int>::iterator, int, my_predicate*> with_typedef(&int_vector_iter_comp);
using my_predicate_pointer_type = bool (*)(const vector<int>::iterator iter1, const vector<int>::iterator iter2);
map<vector<int>::iterator, int, my_predicate_pointer_type> with_using(&int_vector_iter_comp);
// Testing
vector<int> v = {1, 2, 3};
default_comparison.insert(pair<vector<int>::iterator, int>({v.end(), 0}));
default_comparison.insert(pair<vector<int>::iterator, int>({v.begin(), 0}));
default_comparison.insert(pair<vector<int>::iterator, int>({v.begin(), 1}));
default_comparison.insert(pair<vector<int>::iterator, int>({v.begin() + 1, 1}));
cout << "size: " << default_comparison.size() << endl;
for (auto& p : default_comparison) {
cout << *(p.first) << ": " << p.second << endl;
}
basic.insert(pair<vector<int>::iterator, int>({v.end(), 0}));
basic.insert(pair<vector<int>::iterator, int>({v.begin(), 0}));
basic.insert(pair<vector<int>::iterator, int>({v.begin(), 1}));
basic.insert(pair<vector<int>::iterator, int>({v.begin() + 1, 1}));
cout << "size: " << basic.size() << endl;
for (auto& p : basic) {
cout << *(p.first) << ": " << p.second << endl;
}
with_decltype.insert(pair<vector<int>::iterator, int>({v.end(), 0}));
with_decltype.insert(pair<vector<int>::iterator, int>({v.begin(), 0}));
with_decltype.insert(pair<vector<int>::iterator, int>({v.begin(), 1}));
with_decltype.insert(pair<vector<int>::iterator, int>({v.begin() + 1, 1}));
cout << "size: " << with_decltype.size() << endl;
for (auto& p : with_decltype) {
cout << *(p.first) << ": " << p.second << endl;
}
with_typedef.insert(pair<vector<int>::iterator, int>({v.end(), 0}));
with_typedef.insert(pair<vector<int>::iterator, int>({v.begin(), 0}));
with_typedef.insert(pair<vector<int>::iterator, int>({v.begin(), 1}));
with_typedef.insert(pair<vector<int>::iterator, int>({v.begin() + 1, 1}));
cout << "size: " << with_typedef.size() << endl;
for (auto& p : with_typedef) {
cout << *(p.first) << ": " << p.second << endl;
}
}
참고 URL : https://stackoverflow.com/questions/5733254/how-can-i-create-my-own-comparator-for-a-map
'developer tip' 카테고리의 다른 글
서버 소켓에서 클라이언트 연결 끊김을 즉시 감지 (0) | 2020.10.29 |
---|---|
MATLAB 플로팅 그림의 창 제목을 변경하는 방법은 무엇입니까? (0) | 2020.10.29 |
PHP로 PDF 파일 병합 (0) | 2020.10.28 |
새로 고침 토큰 받기 Google API (0) | 2020.10.28 |
텍스트 영역 HTML 태그의 한 줄씩 읽는 방법 (0) | 2020.10.28 |