You are viewing a single comment's thread. Return to all comments →
Here is my c++ solution, you can watch the explanation here : https://youtu.be/TPW8IGrTI8A
vector<int> countingSort(vector<int> arr) { vector<int> result, count(100, 0); for(int i = 0; i < arr.size(); i++) count[arr[i]]++; for(int i = 0; i < 100; i++) result.resize(result.size() + count[i], i); return result; }
Seems like cookies are disabled on this browser, please enable them to open this website
Counting Sort 2
You are viewing a single comment's thread. Return to all comments →
Here is my c++ solution, you can watch the explanation here : https://youtu.be/TPW8IGrTI8A