DataStructures / Data structures Interview questions
What is shell sort?
Shell sort is an unstable quadratic sorting algorithm and it is a generalization of insertion sort.
This algorithm starts by sorting pairs of elements far apart from each other, then progressively reducing the gap between elements to be compared.
More Related questions...