【改良的選擇排序 】

/* 改良的選擇排序,需要堆積樹 */ #include<stdio.h> #include<stdlib.h> #include<time.h> #define MAX 10 #define SWAP(x, y) {int t; t = x; x = y; y = t;} void createheap(int []); void heapsort(int []); int main(v
相關文章
相關標籤/搜索