1. 首页
  2. 数据库
  3. 其它
  4. c++中的set自定义数据类型

c++中的set自定义数据类型

上传者: 2021-01-17 05:37:34上传 PDF文件 18KB 热度 13次
```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
用户评论