跳到文章

本 日 公 休

Hi, this is Mendax. I’m documenting my learning notes in this blog.

随笔分类 -  排序

摘要:/*某种排序*/ #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 叁壹壹 阅读(149) 评论(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 叁壹壹 阅读(146) 评论(0) 推荐(0)