About 10,500,000 results
Open links in new tab
  1. Shell Sort (With Code in Python, C++, Java and C) - Programiz

    Shell sort is an algorithm that first sorts the elements far apart from each other and successively reduces the interval between the elements to be compared. In this tutorial, you will understand …

  2. C Exercises: Sort numbers using shell sorting method

    Mar 20, 2025 · Write a C program to implement shell sort on an array of floating-point numbers and verify the sorted order. Write a C program to optimize shell sort using the Sedgewick gap …

  3. Shell Sort Algorithm in C | Shell Sort Program in C - Sanfoundry

    Write a C program to sort a given array of integer numbers using Shell Sort algorithm.

  4. Shell Sort - GeeksforGeeks

    Feb 20, 2025 · In Shell sort, we make the array h-sorted for a large value of h. We keep reducing the value of h until it becomes 1. An array is said to be h-sorted if all sublists of every h'th …

  5. C Program to Implement SHELL SORT

    C program to implement the Shell sorting algorithm. The c program written using arrays and function shell sort.

  6. Shell Sort Program in C - Online Tutorials Library

    Shell Sort Program in C - Learn how to implement the Shell Sort algorithm in C with our easy-to-follow example. Explore the code and understand its functionality.

  7. Implementation of Shell Sort Algorithm in C - Simple2Code

    Jan 20, 2022 · In this tutorial, we will write a C program to implement shell sort. Before that, you may go through the following topics in C. Shell sort is an in-place comparison-based sorting …

  8. C program to implement shell sort algorithm - Includehelp.com

    Aug 6, 2023 · In this tutorial, we will how to implement shell sort algorithm using C program? By Nidhi Last updated : August 06, 2023. Here, we will create an array of integers then we will …

  9. Shell Sort Implementation in C - Programming Algorithms

    Shell Sort Programming Algorithm in C. Shell sort (a.k.a Shell's Method and Diminishing Increment Sort) is an in-place comparison sort algorithm. The method starts by sorting pairs of …

  10. Program to sort the given numbers using shell sort - C

    Dec 31, 2019 · printf ("\nThe sorted elements are :\n\n"); for (i = 0; i < n; i++) printf ("%d\t", a[i]); getch();

Refresh