快速排序

Posted KYRIE`RUSSAL

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速排序相关的知识,希望对你有一定的参考价值。

 

快速排序=挖坑填数+分治法

【举例】

66 13 51 76 81 26 57 69 23
23 13 51 57 26 66 81 69 76

 

【Pascal版】

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
procedure Qsort(l,r:longint);
var i,j,t:longint;
begin
    i:=l;j:=r;t:=a[i];   //在i处挖坑
    while i<j do
    begin
        while (i<j)and(a[j]>=t) do dec(j);
        if(i<j) then begin a[i]:=a[j]; inc(i); end;  //挖j填i
        while (i<j)and(a[i]<=t) do inc(i);
        if(i<j) then begin a[j]:=a[i]; dec(j); end;  //挖i填j
    end;
    a[i]:=t;    //填i
    if l<i-1 then Qsort(l,i-1);
    if r<j+1 then Qsort(i+1,r);
end;

  

【C++版】

 

1
2
3
4
5
6
7
8
9
10
11
12
void Qsort(int L,int R){
    int i=L,j=R,t=a[i];    //在i处挖坑
    while(i<j){
        while(i<j && a[j]>=t)j--;
        if(i<j){a[i]=a[j]; i++; }  //挖j填i
        while(i<j && a[i]<=t)i++;
        if(i<j){a[j]=a[i]; j--; }  //挖i填j
    }
    a[i]=t;  //填i
    if(l<i-1) Qsort(l,i-1);
    if(r<j+1) Qsort(i+1,r);
}

以上是关于快速排序的主要内容,如果未能解决你的问题,请参考以下文章

算法排序之堆排序

前端开发工具vscode如何快速生成代码片段

前端开发工具vscode如何快速生成代码片段

如何使用sublime代码片段快速输入PHP头部版本声明

代码片段如何使用CSS来快速定义多彩光标

vs2003:快速片段工具