Pagini recente » Cod sursa (job #1274366) | Cod sursa (job #278616) | Cod sursa (job #2741295) | Cod sursa (job #2088285) | Cod sursa (job #1282578)
/**
* Description: Algorithms and Data Structures.
* Quick Sort is a fast sorting algoritm, which is used not only for educational purposes,
* but widely applied in practice. On the average, it has O(n log n) complexity, making quicksort suitable for sorting big data volumes.
* The divide-and-conquer strategy is used. Choose a pivot value. Partition. Rearrange elements in such way, that all elements which is lesser than the pivot
* go to the left part of the array and all elements greater than the pivot, to the right part of the array. Values equal to the pivot can stay
* in any part of the array.Apply quicksort algoritm recursively to the left and the right parts.
*
* Author : Adrian Statescu <[email protected]>
*
* License : Feel Free to use and distribute as long as this note is kept.
*/
#include <stdio.h>
#define FIN "algsort.in"
#define FOUT "algsort.out"
#define MAXN 500005
typedef unsigned int uint;
uint arr[ MAXN ],
n;
void read() {
uint i;
freopen(FIN, "r", stdin);
scanf("%d", &n);
for(i = 0; i < n; i++) scanf("%d", &arr[ i ]);
fclose( stdin );
};
void swap(uint *i, uint *j) {
uint temp;
temp = *i;
*i = *j;
*j = temp;
};
uint pivot(int low, int high) {
int i = low,
j = high,
p = arr[ ( low + high ) >> 1 ];
while(i <= j) {
while(arr[ i ] < p) i++;
while(arr[ j ] > p) j--;
if( i <= j ) swap( &arr[ i++ ], &arr[ j-- ]);
}
return i;
};
void _qsort(uint low, uint high) {
uint piv;
piv = pivot(low, high);
if(low < piv - 1) _qsort(low, piv - 1);
if(piv < high) _qsort(piv, high);
};
void qsort() {
_qsort(0, n - 1);
};
void write() {
uint i;
freopen(FOUT, "w", stdout);
for(i = 0; i < n; i++) printf("%d ", arr[ i ]);
fclose( stdout );
};
int main() {
read();
qsort();
write();
return(0);
};