+ 1
Merge sort vs quick sort for array
Hi Can any one share thought why one should go for merge sort over quick sort in case of larger array size ? Both are having n log n... How length of array metter for choice?
4 ответов
+ 1
Quicksort has a worst case O(N²) complexity.
Mergesort has a worst case O(NlogN) complexity.
Which method is better depends on many things though.
+ 1
https://www.geeksforgeeks.org/quick-sort-vs-merge-sort/
This may help you
0
Ketan Lalcheta please can you show me some good references on your statement, "merge sort over quick sort in case of large arrays". I was also searching for something similar.