We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa9189a commit bdb30f8Copy full SHA for bdb30f8
src/Algorithms/Sorting/MergeSort/MergeSort.md
@@ -12,6 +12,9 @@ sequence with later merge-back of the sub-sequences.
12
4. Repeat 3 until you have arrived at the inital length of the sequence
13
14
## Complexity
15
+The complexity of MergeSort is pretty straight-forward as opposed to e.g. RadixSort.
16
+As you can see it is not able to break the lower bound of `O(n log(n))`, due to it being
17
+comparison-based.
18
19
| Best | Average | Worst | Stability |
20
|----|----|----|----|
0 commit comments