-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquickSort.c
More file actions
47 lines (42 loc) · 999 Bytes
/
quickSort.c
File metadata and controls
47 lines (42 loc) · 999 Bytes
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
#include<stdio.h.>
void swap(int *a, int *b){
int tmp=*a;
*a=*b;
*b=tmp;
}
int partition(int array[], int low, int high){
int pivot = array[high];
int i = (low-1);
for (int j=low; j<high; j++){
if (array[j]<=pivot){
i++;
swap(&array[i],&array[j]);
}
}
swap(&array[i+1], &array[high]);
return (i + 1);
}
void quickSort(int array[], int low, int high){
if (low < high){
int pi = partition(array, low, high);
quickSort(array,low,pi -1);
quickSort(array, pi+1, high);
}
}
void printArray(int array[], int size){
for (int i = 0; i<size; ++i){
printf("%d ",array[i]);
}
}
int main(){
int arraySize;
printf("Enter the array size: ");
scanf("%d",&arraySize);
int data[arraySize];
printf("Enter the array elements: ");
for(int i=0;i<arraySize;i++){
scanf("%d",&data[i]);
}
quickSort(data, 0, arraySize-1);
printArray(data,arraySize);
}