The ideal sorting algorithm would have the following properties,except?
Stable
Operate in place
Adaptive
None of the options is correct
1
Expert's answer
2015-04-22T11:55:39-0400
4. None of the options is correct Because: The ideal sorting algorithm would have the following properties: - Stable: Equal keys aren't reordered. - Operates in place, requiring O(1) extra space. - Worst-case O(n•lg(n)) key comparisons. - Worst-case O(n) swaps. - Adaptive: Speeds up to O(n) when data is nearly sorted or when there are few unique keys.
Comments
Leave a comment