InterviewSolution
Saved Bookmarks
| 1. |
What is the best case time complexity of permutation sort?(a) O(n^2)(b) O(n)(c) O(n log n)(d) O(1)I had been asked this question in exam.This intriguing question originated from Sorting in section Sorting of Data Structures & Algorithms II |
|
Answer» The correct answer is (B) O(n) |
|