语法:shellsort(int a[],int n); 参数: n: 数组元素个数 a[]: 待排序数组 返回值: null 注意: 输出升序序列 源程序: void shellsort(int a[],int n) { int i,j,g; &...