Sorting Algorithms - Study Mode
[#361] Which of the following don't affect the time complexity of bucket sort?
Correct Answer
(D) input values
[#362] Tim sort begins sorting the given array by using which of the following sorting algorithm?
Correct Answer
(C) insertion sort
[#363] What is the average case time complexity of recursive bubble sort?
Correct Answer
(C) O(n 2 )
[#364] What is the auxiliary space complexity of standard merge sort?
Correct Answer
(C) O(n)
[#365] What is the median of three techniques in quick sort?
Correct Answer
(D) choosing median of first, last and middle element as pivot