Sathyabama-Coding-Club / HacktoberFest2019

This repository is a part of HacktoberFest, an event organised by DigitalOcean.
https://hacktoberfest.digitalocean.com/
15 stars 52 forks source link

add shell sort .cpp #34

Closed snowhill-prog closed 4 years ago

snowhill-prog commented 4 years ago

this adds the shell sorting algorithm in cpp,The idea of shellSort is to allow exchange of far items. In shellSort, 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 element is sorted.

abhiramready commented 4 years ago

Great Keep Contributing!