Sorting Algorithms - Study Mode
[#351] Cocktail sort is a comparison based sort.
Correct Answer
(A) True
[#352] Cycle sort is a comparison based sort.
Correct Answer
(A) true
[#353] What is the best case time complexity randomized quick sort?
Correct Answer
(B) O(n log n)
[#354] Which of the following data structure is required for the implementation of tree sort?
Correct Answer
(C) binary search tree
[#355] What is the average number of comparisons used in a heap sort algorithm?
Correct Answer
(D) 2N log N + O(N)