摘要: 1 #include <iostream> 2 using namespace std; 3 const int N = 10010; 4 int n, q[N]; 5 void quick_sort(int q[], int l, int r) { 6 if(l >= r) return ; 7 阅读全文
posted @ 2020-07-11 21:11 Captand 阅读(187) 评论(0) 推荐(0) 编辑