P1177 【模板】快速排序

这次没有题目水字数了,记录一个很棒的快速排序模板!!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
void Qsort(int beg, int end) {
int mid = str[(beg + end) / 2];
int i = beg, j = end;
do {
while (str[i] < mid)i++;
while (str[j] > mid)j--;
if (i <= j) {
swap(str[i], str[j]);
i++;
j--;
}
} while (i <= j);
if(beg<j)Qsort(beg,j);
if(i<end)Qsort(i, end);
}

P1177 【模板】快速排序
http://hexo.zhywyt.me/posts/2977/
作者
zhywyt
发布于
2023年2月1日
更新于
2024年10月22日
许可协议