Sorting Demo
Switch algorithms and ordering strategy on the same input.
Complexity: O(n log n) / O(n log n) / O(n^2)
Stable: No
Fast in practice for general workloads.
Parsed Input
[ 64, 34, 25, 12, 22, 11, 90 ]
Sorted Result
[ 11, 12, 22, 25, 34, 64, 90 ]