[Sort] 빠른 정렬 - 반복 구현

2491 단어 빠른 정렬
#include<iostream>

using namespace std;

void QuickSort(int a[],int low,int high)
{
    if(low < high)
    {
        int pivot = a[low]; // 
        int first = low;
        int last = high;
        while(first < last)
        {
            while(first < last && a[last] > pivot)
            {
                --last;
            }

            a[first] = a[last]; // 

            while(first < last && a[first] <= pivot)
            {
                ++first;
            }

            a[last] = a[first]; // 
        }
        a[first] = pivot;
        QuickSort(a,low,first-1);
        QuickSort(a,first+1,high);
    }
    else
    {
        return;
    }
}

void main()
{
    int a[] = {57,68,59,52,72,28,96,33,24};
    int count = sizeof(a) / sizeof(a[0]);
    QuickSort(a,0,count-1);
    for(int i=0;i<count;i++)
    {
        cout<<a[i]<<" ";
    }
    cout<<endl;
}

좋은 웹페이지 즐겨찾기