數據結構之---C語言實現希爾排序

//希爾排序Shell Sort //楊鑫 #include <stdio.h> #include <stdlib.h> void ShellSort(int a[], int length) { int increment; int i,j; int temp; for(increment = length/2; increment > 0; increment /= 2) //用來控制
相關文章
相關標籤/搜索