InterviewSolution
Saved Bookmarks
| 1. |
What is shell sort? |
|
Answer» Shell sort can be said a variant of insertion sort. Shell sort divides the list into smaller sublist based on some gap variable and then each sub-list is sorted using insertion sort. In best cases, it can perform upto Ο(n log n). |
|