Skip to content

Commit

Permalink
Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcisiodarocha committed Sep 1, 2021
1 parent 44aa95c commit acb62a7
Show file tree
Hide file tree
Showing 5 changed files with 118 additions and 2 deletions.
Binary file removed Quicksort.c.o
Binary file not shown.
6 changes: 4 additions & 2 deletions Quicksort.c → Quicksort.v1.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ int partition (int arr[], int low, int high) {
return (i + 1);
}

void quickSort(int arr[], int low, int high){
void quickSort(int arr[], long int low, long int high){
if (low < high){
int pi = partition(arr, low, high);
long int pi = partition(arr, low, high);
quickSort(arr, low, pi - 1);
quickSort(arr, pi + 1, high);
}
Expand All @@ -37,7 +37,9 @@ void printArray(int arr[], int size){
int main(){
int arr[] = {10, 8, 11, 15, 7, 12, 33, 3};
int n = sizeof(arr)/sizeof(arr[0]);

quickSort(arr, 0, n-1);

printf("The sorted array is: \n");
printArray(arr, n);
return 0;
Expand Down
51 changes: 51 additions & 0 deletions Quicksort.v2.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#include<stdio.h>

void swap(int* a, int* b) {
int t = *a;
*a = *b;
*b = t;
}

int partition (int arr[], int low, int high) {
int pivot = arr[high];
int i = (low - 1);
for (int j = low; j <= high- 1; j++){
if (arr[j] <= pivot){
i++;
swap(&arr[i], &arr[j]);
}
}
swap(&arr[i + 1], &arr[high]);
return (i + 1);
}

void quickSort(int arr[], long int low, long int high){
if (low < high){
long int pi = partition(arr, low, high);
quickSort(arr, low, pi - 1);
quickSort(arr, pi + 1, high);
}
}

void printArray(int arr[], int size){
int i;
for (i=0; i < size; i++)
printf("%d ", arr[i]);
printf("\n");
}

int main(){
long int n = 10000;
int *arr = (int*)malloc(n * sizeof(int));
srand(0);
long int i;
for (i = 0; i < n; i++) {
arr[i] = rand() % n;
}

quickSort(arr, 0, n-1);

printf("The sorted array is: \n");
printArray(arr, n);
return 0;
}
63 changes: 63 additions & 0 deletions Quicksort.v3.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
#include<stdio.h>
#include <time.h>

void swap(int* a, int* b) {
int t = *a;
*a = *b;
*b = t;
}

int partition (int arr[], int low, int high) {
int pivot = arr[high];
int i = (low - 1);
for (int j = low; j <= high- 1; j++){
if (arr[j] <= pivot){
i++;
swap(&arr[i], &arr[j]);
}
}
swap(&arr[i + 1], &arr[high]);
return (i + 1);
}

void quickSort(int arr[], long int low, long int high){
if (low < high){
long int pi = partition(arr, low, high);
quickSort(arr, low, pi - 1);
quickSort(arr, pi + 1, high);
}
}

void printArray(int arr[], int size){
int i;
for (i=0; i < size; i++)
printf("%d ", arr[i]);
printf("\n");
}

int main(){

long int n = 100000000;
int *arr = (int*)malloc(n * sizeof(int));
srand(0);
long int i;
for (i = 0; i < n; i++) {
arr[i] = rand() % n;
}


clock_t start, end;
double cpu_time_used;

start = clock();
quickSort(arr, 0, n-1);
end = clock();

cpu_time_used = ((double) (end - start)) / CLOCKS_PER_SEC;

printf("CLOCKS_PER_SEC: %ld \n", CLOCKS_PER_SEC);
printf("CPU time used is: %f \n", cpu_time_used);


return 0;
}
Binary file added a.out
Binary file not shown.

0 comments on commit acb62a7

Please sign in to comment.