linux C 快速排序法

來源:互聯網
上載者:User

標籤:blog   io   for   ar   div   linux   amp   size   

#include <stdio.h>// 數組長度#define LENGTH(array) ( (sizeof(array)) / (sizeof(array[0])) )/* * 快速排序 * * 參數說明: *     a -- 待排序的數組 *     l -- 數組的左邊界(例如,從起始位置開始排序,則l=0) *     r -- 數組的右邊界(例如,排序截至到數組末尾,則r=a.length-1) */void quick_sort(int a[], int l, int r){    if (l < r)    {        int i,j,x;        i = l;        j = r;        x = a[i];        while (i < j)        {            while(i < j && a[j] > x)                j--; // 從右向左找第一個小於x的數            if(i < j){                //a[i++] = a[j];a[i] = a[j];i++;}            while(i < j && a[i] < x)                i++; // 從左向右找第一個大於x的數            if(i < j){                a[j] = a[i];j--;}        }        a[i] = x;        quick_sort(a, l, i-1); /* 遞迴調用 */        quick_sort(a, i+1, r); /* 遞迴調用 */    }}void main(){    int i;    int a[] = {30,40,60,10,20,50};    int ilen = LENGTH(a);    printf("before sort:");    for (i=0; i<ilen; i++)        printf("%d ", a[i]);    printf("\n");    quick_sort(a, 0, ilen-1);    printf("after  sort:");    for (i=0; i<ilen; i++)        printf("%d ", a[i]);    printf("\n");}

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.