Skip to main content
/Sorting/Quick Sort
1 / 26
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
38
27
43
3
9
82
10
0
1
2
3
4
5
6
Step 1:Initial array. Quick Sort will pick a pivot and partition the array around it.
Variables
low==0
high==6
array==[38, 27, 43, 3, 9, 82, 10]