1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
#include <stdio.h>
#include <stdlib.h>
int a[]={15,56,2,51,1,59,3}; // the array which hope to sort
void Swap( int *a, int *b) { // Swap
int temp;
temp=*a;*a=*b;*b=temp;
}
int Random(int p,int r) { // generate a random number
int result=p+rand()%(r-p+1);
return result;
}
int Partition( int a[], int p, int r) {
int i=p,j=r+1; int x=a[p];
// 将 <x 的元素交换到左边区域
// 将 >x 的元素交换到右边区域
while ( true ) {
while (a[++i]<x&&i<=r); while (a[--j]>x&&j>=p);
if (i>=j) break ;
Swap (&a[i],&a[j]);
}
a[p]=a[j]; a[j]=x; return j;
}
int RandomizedPartition( int a[], int p, int r) {
int i=Random(p,r);
Swap (&a[i],&a[p]);
return Partition(a,p,r);
}
void RandomizedQuickSort( int a[], int p, int r) {
if (p<r) {
int q= RandomizedPartition (a,p,r);
RandomizedQuickSort (a,p,q-1); RandomizedQuickSort(a,q+1,r);
}
}
void main() {
for ( int i=0;i<7;i++) printf("%d ",a[i]);
printf ("\n");
RandomizedQuickSort (a,0,6);
for (i=0;i<7;i++) printf("%d ",a[i]);
printf ("\n");
}
|