โ† Back to Index

๐Ÿ”€ Merge Sort

Sorting ยท Divide and conquer
0
Comparisons
0
Array Writes
0
Recursion Depth
Ready
Status
32
50 ms
Unsorted
Splitting
Comparing
Merging
Sorted

What you're seeing

Merge Sort recursively splits the array into halves until each sub-array has one element, then merges them back in sorted order. It guarantees O(n log n) time complexity.