/* * ===================================================================================== * * Filename: shellSort.c * * Description: 希尔排序 * * Version: 1.0 * Created: 2016年11月17日 14时46分39秒 * Revision: none * Compiler: gcc * * Author: guoqingshan (ackevil), wyguoqingshan@163.com * Organization: * * ===================================================================================== */#include #include void shellSort(int a[],int len){ //2的倍数为分组 // int i,j,temp; int h=len/2; while(h>=1){ for(i=h;i =h;j-=h){ if(a[j]