快速排序 C語言實現

來源:互聯網
上載者:User

Program 1

#include "stdio.h"
#include "conio.h"

void quick_sort(int *a,int left,int right);

main()
{
    int i,j,temp;
    int a[10]={30,50,40,10,60,70,80,20,27,11};
    for(i=0;i<10;i++)
        printf("%d ",a[i]);
        printf("/n");

    quick_sort(a,0,9);

    for(i=0;i<10;i++)
        printf("%d ",a[i]);
        printf("/n");
    getch();
}

void quick_sort(int *a,int left,int right)
{
     int low,upper,point;
     int t;

     if(left<right)
     {
        point=a[left];
        low=left;
        upper=right+1;

        while(1)
        {
           while(a[++low]<point);
           while(a[--upper]>point);
           if(low>=upper)
                break;

           t=a[low]; a[low]=a[upper]; a[upper]=t;

        }

        a[left]=a[upper];
        a[upper]=point;

        quick_sort(a,left,upper-1);
        quick_sort(a,upper+1,right) ;

     }

}
 

Program 2

int a[10000];

int partion(int lo, int hi)
{
    a[0] = a[lo];
   
    while (lo<hi)
    {
        while (lo<hi&&a[hi]>=a[0]) hi--;
        a[lo] = a[hi];
        while (lo<hi&&a[lo]<=a[0]) lo++;
        a[hi] = a[lo];
    }
    a[lo] = a[0];
    return lo;
}

void qsort(int i, int j)
{
    int k;
    if (i<j)
    {
        k = partion(i, j);
        qsort(i, k-1);
        qsort(k+1, j);
    }
}
這個是資料結構書的。

 

Program 3

void swap(int left,int right)
{   
   char *temp; 
   temp = array[left]; 
   array[left] = array[right]; 
   array[right] = temp;
}
void Qsort(int left,int right)
{
   int pos;
   int last;
   int loop;
  
   if(left<right)
   {
       last=left;
       for(loop=left+1;loop<=right;loop++)
           if(array[loop]<array[left])
               swap(loop,++last);
       swap(left,last);
       Qsort(left,last-1);
       Qsort(last+1,right);
    }
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.