码迷,mamicode.com
首页 > 编程语言 > 详细

快速排序模板 (ACwing.785)

时间:2020-02-17 19:51:59      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:swa   string   快速   scan   ring   nbsp   bsp   name   ons   

首先快速排序分为三部

首先要先确定分界点x = a[l] a[r] a[(l+r)/2]都行依据情况而定

其次 调整区间,定义双指针的方法,排序一次后,i指针前面的数一定小于等于x(分界点)j指针后面的数一定大于等于x

最后递归完成排序

#include <iostream>
#include <string>
#include <algorithm>
#include <cstring>
#include<stdio.h>
using namespace std;
const int N =1e6+5;
int a[N];
void quick_sort(int a[],int l,int r)
{
if(l>=r) return;
int x=a[(r+l)>>1];
int i=l-1,j=r+1;
while(i<j)
{
do i++ ;while(a[i]<x);
do j-- ;while(a[j]>x);
if(i<j)swap(a[i],a[j]);
}
quick_sort(a,l,j);
quick_sort(a,j+1,r);
}

int main()
{
int n;
scanf("%d",&n);
for(int i=0;i<n;i++) scanf("%d",&a[i]);
quick_sort(a,0,n-1);
for(int i=0;i<n;i++) printf("%d ",a[i]);
return 0;
}

 

快速排序模板 (ACwing.785)

标签:swa   string   快速   scan   ring   nbsp   bsp   name   ons   

原文地址:https://www.cnblogs.com/zyz010206/p/12322916.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!