2010年10月26日
摘要: #include <stdio.h>#include<malloc.h>#include<stdlib.h>#include<time.h>#define ARR_SIZE 10 //数据数组大小void quickSort(int data[], int low, int high);int partition(int data[], int l... 阅读全文
posted @ 2010-10-26 17:31 Goofy 阅读(163) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h>#include<malloc.h>#include<stdlib.h>#include<time.h>#define ARR_SIZE 100int data[ARR_SIZE];void mergeSort(int,int);void merge(int,int,int);int main(){ int i=0,... 阅读全文
posted @ 2010-10-26 17:07 Goofy 阅读(135) 评论(0) 推荐(0) 编辑