About 13,400 results
Open links in new tab
  1. Shell Sort - GeeksforGeeks

    Oct 27, 2025 · Shell Sort, also known as Shell's method, is an in-place comparison sort and an optimization of Insertion Sort. It improves upon the efficiency of Insertion Sort by allowing elements …

  2. Shellsort - Wikipedia

    Shellsort is an optimization of insertion sort that allows the exchange of items that are far apart. The idea is to arrange the list of elements so that, starting anywhere, taking every h th element produces a …

  3. Shell Sort Algorithm - Online Tutorials Library

    Shell sort is a highly efficient sorting algorithm and is based on insertion sort algorithm. This algorithm avoids large shifts as in case of insertion sort, if the smaller value is to the far right and has to be …

  4. Shellsort - Sorting Wiki

    Dec 12, 2025 · Shellsort is a sorting algorithm based on a gapped Insertion sort with time complexity that depends on the gap sequence, but universally requiring memory. Unlike insertion sort, it is …

  5. Shell Sort (With Code in Python, C++, Java and C) - Programiz

    Shell sort is a generalized version of the insertion sort algorithm. It first sorts elements that are far apart from each other and successively reduces the interval between the elements to be sorted. The …

  6. Shell Sort Algorithm with EXAMPLE - Guru99

    Jul 28, 2025 · Shell sort is a generalized extension of the insertion sort algorithm. The fundamental idea of this sorting algorithm is to group the elements that are far apart and sort them accordingly. Then …

  7. 6.10. The Shell Sort — Problem Solving with Algorithms and Data …

    The shell sort, sometimes called the “diminishing increment sort,” improves on the insertion sort by breaking the original list into a number of smaller sublists, each of which is sorted using an insertion …

  8. 4.8. Shellsort — Data Structures & Algorithms

    Oct 25, 2024 · Shellsort was named for its inventor, D.L. Shell, who first published it in 1959. It is also sometimes called the diminishing increment sort. When properly implemented, Shellsort will give …

  9. Shell Sort Algorithm: Everything You Need to Know - Simplilearn

    Jan 25, 2025 · Shell sort (also known as Shell sort or Shell's approach) is an in-place comparison-based sorting algorithm. In 1959, Donald Shell published the first version of the shell sort algorithm. Shell …

  10. Shellsort - HandWiki

    Shellsort is an optimization of insertion sort that allows the exchange of items that are far apart. The idea is to arrange the list of elements so that, starting anywhere, taking every h th element produces a …