當前位置:成語大全網 - 書法字典 - 如何按鍵值對multimap對象中的元素進行排序

如何按鍵值對multimap對象中的元素進行排序

如果鍵值是字符串,直接輸出就可以了。多地圖按順序排列。如果您想使用C風格的字符串,您需要定制壹個排序規則,這需要在創建multimap時完成:

# include & lt地圖& gt

# include & ltiostream & gt

# include & ltcstring & gt

使用命名空間std

struct cstrcmp_less

{

bool運算符()(const char* a,const char* b)

{

return strcmp(a,b) == -1?1 : 0;

}

};

int main()

{

多地圖& ltconst char*,const char*,cstrcmp _ less & gtxx;

xx.insert(make_pair("12 "," 22 "));

xx.insert(make_pair("23 "," 22 "));

xx.insert(make_pair("14 "," 22 "));

xx . insert(make _ pair(" 11 "," 22 "));

for(multimap & lt;const char*,const char * & gt::叠代器it = xx . begin();它!= xx . end();++it)

cout & lt& lt它-& gt;first & lt& ltendl

}