forked from siddhant3s/cs215
-
Notifications
You must be signed in to change notification settings - Fork 0
/
q11.c
executable file
·75 lines (61 loc) · 1.83 KB
/
q11.c
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
#include <stdio.h>
#include <stdlib.h>
void swap(int A[], int key1, int key2); /* swaps two array elements */
int partition( int A[], int left, int right); /* partition an array such that: lower_part<= higher part. */
void quicksort( int A[], int left, int right); /* uses partition to sort the array */
/*void print(); *//* auxiliary: to print the array */
void swap(int A[], int key1, int key2){
int tmp;
tmp = A[key2];
A[key2] = A[key1];
A[key1] = tmp;
}
int partition( int A[], int left, int right) {
int pivot;
pivot = A[right];
while(1){
while( A[right] > pivot){ // while the elements starting from right are > than the last element
right--; // divide the problem
}
while( A[left] < pivot){ // while the elements starting from left are < than the last element
left++; // divide the problem (A[] considered becomes smaller)
}
if( left < right ){
swap(A,left,right); // swap the elements OR
}else{
return left; // return a new left "pointer"
}
}
}
void quicksort( int A[], int left, int right){
int m;
if( left < right ) { // make sure that we are trying to sort a subarray
m = partition( A, left, right); // divide and conquer
quicksort( A, left, m-1); // sort both subarrays
quicksort( A, m+1, right);
}
}
const int MAX=20;
size_t ARRAY_SIZE;
int main() {
int A[MAX];
printf("How many elements? (MAX: %i)",MAX);
scanf("%i",&ARRAY_SIZE);
int i;
printf("Enter the Elements:\n");
for (i=0; i<ARRAY_SIZE; ++i)
scanf("%i",A+i);
quicksort( A, 0, ARRAY_SIZE - 1);
printf("\n\nSorted array is: ");
for(i = 0; i < ARRAY_SIZE; ++i)
printf(" %d ", A[i]);
printf("\n");
}
/*
void print(int A[]){
int i;
for(i = 0; i < ARRAY_SIZE; ++i)
printf(" %d ", A[i]);
printf("\n");
}
*/