Which sort is an O(n log n) comparison-basedsorting algorithm?
Quicksort
Mergesort
divide and conquer
Binary
1
Expert's answer
2015-04-25T12:12:04-0400
a.Quicksort b.Mergesort
There are two classes of sorting algorithms namely, O(n2) - algorithms and O(n log n)-algorithms. O(n2)-class includes bubble sort, insertion sort,selection sort and shell sort. O(n log n)-class includes heap sort, merge sort and quick sort.
Comments
Leave a comment