Login
Remember
Register
Ask a Question
What is shell sort?
0
votes
asked
Aug 6, 2024
in
Other
by
rajeshsharma
What is shell sort?
shell
sort
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 6, 2024
by
rajeshsharma
Shell sort can be said as a variant of insertion sort. It divides the list into smaller sublists based on some gap variable, and then each sub-list is sorted using insertion sort. In some cases, it can also perform up to 0(n log n).
...