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). 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). |
|