STL map 對結構體進行特定的排序

#include<iostream> #include<map> #include<algorithm> #include<string> using namespace std; struct k {     string name;     int id; }; bool operator <(const k &x,const k &y)   {       if(x.id==y.id)  
相關文章
相關標籤/搜索