希爾shell排序

#include <stdio.h> #include <time.h> #include <stdlib.h> typedef int TYPE; #define N 100000 void exchange(TYPE A[], int a, int b){TYPE tmp = A[a]; A[a] = A[b]; A[b] = tmp;} void selectionSort(TYPE
相關文章
相關標籤/搜索