开发者社区> 问答> 正文

用C++编程 ,快速排序非递归算法

用C++编程 ,快速排序非递归算法

展开
收起
知与谁同 2018-07-22 14:34:00 1901 0
1 条回答
写回答
取消 提交回答
  • #include <iostream>
    using namespace std;

    int partition(int *a, int l, int h)
    {
    int x = a[l];
    int i = l;
    int j = h+1;
    int temp;

    while (i<j)
    {
    while (a[++i]<x&&i<h);
    while(a[--j]>x);

    if (i<j)
    {
    temp = a[i];
    a[i] = a[j];
    a[j] = temp;
    }
    }

    a[l] = a[j];
    a[j] = x;

    return j;
    }

    void qsort(int *a, int l, int h)
    {
    if (l>=h)
    return;

    int *s = new int[h-l+1];
    int p = 0;
    s[p++] = l;
    s[p++] = h;

    int low,high,q;

    while (p>0)
    {
    high = s[--p];
    low = s[--p];
    if (low>=high)
    break;

    q = partition(a, low, high);

    if (q-low > high-q)
    {
    s[p++] = low;
    s[p++] = q-1;

    if (high > q)
    {
    s[p++] = q+1;
    s[p++] = high;
    }

    }
    else
    {
    s[p++] = q+1;
    s[p++] = high;
    if (q > low)
    {
    s[p++] = low;
    s[p++] = q-1;
    }
    }
    }
    delete []s;
    }

    int main()
    {
    int a[9] = {9,8,7,6,5,4,3,2,1};
    //int a[9] = {1,2,3,4,5,6,7,8,9};
    qsort(a,0,8);

    for (int i=0; i<9; i++)
    cout<<a[i]<<endl;

    return 0;
    }
    2019-07-17 22:55:02
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
使用C++11开发PHP7扩展 立即下载
GPON Class C++ SFP O;T Transce 立即下载
GPON Class C++ SFP OLT Transce 立即下载