摘要: 关于multiset,有如下结论: 1 multiset<int> s; 2 s.insert(3); 3 s.insert(3); 4 cout<<s.count(3);//结果输出2 5 s.erase(3); 6 cout<<s.count(3);//结果输出0 因此multiset模拟时应注 阅读全文
posted @ 2020-01-19 23:53 Lovaer 阅读(125) 评论(0) 推荐(1) 编辑