Advertisement
yeskendir_sultanov

Counting Sort

Mar 28th, 2024
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.82 KB | Source Code | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main() {
  6.     std::ios_base::sync_with_stdio(false);
  7.     cin.tie(0);
  8.     cout.tie(0);
  9.     int n;
  10.     cin >> n;
  11.     // scanf("%d", &n);
  12.     int cnt[201] = {}; // -100 <= x <= 100;   0-> -100, 1-> -99, 100->0, 200->100
  13.     int shift = 100;
  14.     for (int i = 0; i < n; ++i) {
  15.         int x;
  16.         cin >> x;
  17.         // scanf("%d", &x);
  18.         cnt[x + shift]++;
  19.     }
  20.    
  21.     for (int x = -100; x <= 100; ++x) {
  22.         for (int i = 0; i < cnt[x + shift]; ++i) {
  23.             cout << x << " ";
  24.             // printf("%d ", x);
  25.         }
  26.     }
  27.    
  28.     return 0;
  29. }
  30.  
  31. // Counting Sort
  32. // Time Complexity O(n + interval)
  33. // Memory Complexity O(interval)
  34. /*                  x
  35. 5 4 5 3 2 2 5 4 2 1
  36.  
  37.  
  38.        0  1  2  3  4  5
  39. cnt = {0, 1, 3, 1, 2, 3}
  40. */
  41.  
  42.  
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement