You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Goal: Sort an array from low to high (or high to low)
4
+
5
+
Invented in 1945, mergesort is a fairly efficient sorting algorithm with a best, worst, and average time complexity of O(n log n). The idea behind Mergesort
6
+
is to **divide and conquer**. I'd like to call it **split first** and **merge after**.
0 commit comments