摘要:#include<stdio.h>#include<time.h>#include<stdlib.h>void CreatArry(int *P,int length);void Print(int Data[],int length );void DireInserSort(int *P,int length);void BinSort(int *P,int length);//二分法 void BooSort(int *P,int length);void QuickSort(int *P,int low,int high); //high的下标表示 i
阅读全文
posted @ 2011-12-21 21:14