Skip to main content
/Sorting/Counting Sort
1 / 18
Speed
ENES
/
Big O NotationRecursionTwo PointersSliding WindowSpace ComplexityMemoizationGreedy vs DP
StackQueueLinked ListHash TableBinary Search TreeHeap
Bubble SortSelection SortInsertion SortQuick SortMerge SortHeap SortCounting SortRadix SortShell Sort
Binary SearchLinear SearchJump SearchInterpolation Search
Breadth-First SearchDepth-First SearchDijkstra's AlgorithmPrim's AlgorithmTopological Sort
Fibonacci DPKnapsack 0/1Longest Common Subsequence
N-Queens ProblemSudoku SolverMaze Pathfinding
Tower of Hanoi
38 algorithms·by midudev
4
2
2
8
3
3
1
0
1
2
3
4
5
6
Step 1:Initial array. Counting Sort will count occurrences of each value to determine sorted positions.
Variables
n==7
max==8
array==[4, 2, 2, 8, 3, 3, 1]