【C++算法笔记-02】快速排序算法(quick sort)

【C++算法笔记-02】快速排序算法(quick sort),第1张

【C++算法笔记-02】快速排序算法(quick sort)
#include
#include
#include
#define pi 3.14
typedef long long LL;
using namespace std;
int Partition(int a[],int l,int r){
    int temp=a[l];
    while(ltemp) r--;
        a[l]=a[r];
        while(l 

以上是快速排序的递归实现,那么如何使用非递归实现呢?

递归转非递归首先想到的就是栈这个数据结构!!

很简单!

void quicksort2(int* a,int l,int r){
    stack s;
    s.push(l);
    s.push(r);
    while(!s.empty()){
        int r=s.top();
        s.pop();
        int l=s.top();
        s.pop();
        int p= Partition(a,l,r);

        if((p-1)>l){
            s.push(l);
            s.push(p-1);
        }
        if((p+1) 

记得引用头文件

#include

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5690858.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存