Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- using namespace std;
- int main() {
- multiset<int> b;
- b.insert(5);
- b.insert(10);
- b.insert(7);
- b.insert(5);
- b.insert(13);
- b.insert(7);
- b.insert(5);
- // b.erase(5);
- b.erase(b.find(5));
- for (int x: b) {
- cout << x << " ";
- }
- cout << endl;
- unordered_set<int> c;
- c.insert(5);
- c.insert(20);
- c.insert(13);
- c.insert(4);
- c.insert(5);
- c.insert(13);
- for (int x: c) {
- cout << x << " ";
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement