Advertisement
yeskendir_sultanov

multiset unordered_set

Mar 28th, 2024
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     multiset<int> b;
  7.     b.insert(5);
  8.     b.insert(10);
  9.     b.insert(7);
  10.     b.insert(5);
  11.     b.insert(13);
  12.     b.insert(7);
  13.     b.insert(5);
  14.    
  15.     // b.erase(5);
  16.     b.erase(b.find(5));
  17.    
  18.     for (int x: b) {
  19.         cout << x << " ";
  20.     }
  21.     cout << endl;
  22.    
  23.     unordered_set<int> c;
  24.     c.insert(5);
  25.     c.insert(20);
  26.     c.insert(13);
  27.     c.insert(4);
  28.     c.insert(5);
  29.     c.insert(13);
  30.    
  31.     for (int x: c) {
  32.         cout << x << " ";
  33.     }
  34.    
  35.     return 0;
  36. }
  37.  
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement