1,412 views
1 votes
1 votes

Please log in or register to answer this question.

Related questions

388
views
0 answers
0 votes
Akriti sood asked Dec 27, 2016
388 views
in an effort to make MERGE-SORT faster, you decide to divide the array into k equal sized, disjoint subarrays, where k > 2. This means that you have to merge k lists. How many ... O(n log(k)) time. O(log2 k) O(n) O(logkn) O(lognk)
20.9k
views
2 answers
8 votes
radha gogia asked Jul 19, 2015
20,949 views
(A) Insertion Sort with time complexity O(kn)(B) Heap Sort with time complexity O(nLogk)(C) Quick Sort with time complexity O(kLogk)(D) Merge Sort with time complexity O(kLogk) what is the approach of doing this question ?
14.7k
views
3 answers
1 votes
Angkit asked Apr 23, 2017
14,700 views
Which sorting algorithm can be used to sort a random linked list with minimum time complexity ?A)mergesortB)quicksortC)radixsortD)insertionsortE)heapsort