2020年3月21日
摘要: #include<iostream> using namespace std; #define ElemType int const int Maxn=105; int Partition(ElemType A[],int low,int high){ ElemType pivot=A[low]; 阅读全文
posted @ 2020-03-21 16:48 ~明月几时有 阅读(171) 评论(0) 推荐(0)
摘要: #include<iostream> using namespace std; #define ElemType int const int Maxn=105; void InsertSort(ElemType A[],int n){ int i,j; for(i=2;i<=n;i++){ if(A 阅读全文
posted @ 2020-03-21 15:59 ~明月几时有 阅读(236) 评论(0) 推荐(0)