c++中的set自定义数据类型
```cpp #include #include #include #include #include #include #include #include #include using namespace std; struct all{ int a; string str; bool operator<(const all& b) const//find和count均支持,const必不可少 { return str<b.str;// ́ÓСμ1⁄2 ́óÅÅÁÐ } }; //struct cmp{//仅支持find,不支持count // bool operat
用户评论