C Programming Tutorial
Shell Sorting is a N-gap Insertion Sort. Instead of comparing adjacent pair, Shell sort makes several passes and uses various gaps between adjacent elements(ending with a gap of 1 like in Insertion Sort).
Shell Sort is an extention for Insertion Sort
/****************************************************************************************** * * This Program Performs Shell Sorting * ******************************************************************************************/
ADS