Which of the following sorting algorithms with a time complexity of O(n log(n)) even in the worst case?
Heapsort
Mergesort
Binary
Options A and B
1
Expert's answer
2015-04-24T03:17:02-0400
Heapsort and Mergesort sorting algorithms have inworth case complexity. Algorithm divides its input into asorted and an unsorted region, and it iteratively shrinks the unsorted region by extracting the largest element and moving that to the sorted region.
Heapsortalso competes with merge sort, which has the same time bounds. Merge sort requires Ω(n) auxiliary space, but heapsort requires only a constant amount. Heapsort typically runs faster in practice on machines with small or slow data caches. On the other hand, merge sort has several advantages over heapsort:
Comments
Leave a comment