摘要: /*某种排序*/ #define Size 100 #include<iostream> #include<algorithm> using namespace std; int a[Size]; int Find(int l,int r){ if(r==l) return l; else{ int 阅读全文
posted @ 2020-03-02 16:55 //Mendax 阅读(131) 评论(0) 推荐(0) 编辑
摘要: /*快速排序*/ #include<iostream> #include<stdlib.h> #include<algorithm> using namespace std; const int Max=1e4+5; int array[Max]; int Findout(int l,int r){ 阅读全文
posted @ 2020-03-02 15:45 //Mendax 阅读(138) 评论(0) 推荐(0) 编辑