博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
排序算法-希尔排序
阅读量:5221 次
发布时间:2019-06-14

本文共 724 字,大约阅读时间需要 2 分钟。

/* * ===================================================================================== * *       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]

转载于:https://www.cnblogs.com/Ackevil/p/6126450.html

你可能感兴趣的文章