Sorting Visualizer
New Array
Size
Speed
Bogo Sort O((n+1)!)
Bubble Sort O(n²)
Insertion Sort O(n²)
Selection Sort O(n²)
Shell Sort O(n log² n)
Merge Sort O(n log n)
Quick Sort O(n log n)
Counting Sort O(n+k)
Radix Sort O(nk)