-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3-quick_sort.c
75 lines (71 loc) · 1.64 KB
/
3-quick_sort.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 "sort.h"
/**
* partition - function to split the array to smaller pieces
* @array: the array to sort
* @low_index: lower index of split array
* @high_index: higher index of split array
* @size: size of the full array
* Return: none
*/
int partition(int *array, int low_index, int high_index, size_t size)
{
int i, j, pivot_element, temp;
pivot_element = array[high_index];
i = (low_index - 1);
for (j = low_index; j < high_index; j++)
{
if (array[j] <= pivot_element)
{
i++;
if (i != j)
{
temp = array[i];
array[i] = array[j];
array[j] = temp;
print_array(array, size);
}
}
}
if (pivot_element < array[i + 1])
{
temp = array[i + 1];
array[i + 1] = array[high_index];
array[high_index] = temp;
print_array(array, size);
}
return (i + 1);
}
/**
* quickSort - function to sort an array using the quick sort algorithm
* @array: array to sort
* @low_index: lower index of split array
* @high_index: higher index of split array
* @size: size of array
* Return: none
*/
void quickSort(int *array, int low_index, int high_index, size_t size)
{
int pivot;
if (low_index < high_index)
{
pivot = partition(array, low_index, high_index, size);
quickSort(array, low_index, pivot - 1, size);
quickSort(array, pivot + 1, high_index, size);
}
}
/**
* quick_sort - function to parse the array and pass it\
* to another sorting function
* @array: array to be sorted
* @size: size of array
* Return: none
*/
void quick_sort(int *array, size_t size)
{
int low_index, high_index;
low_index = 0;
high_index = size - 1;
if (size < 2 || array == NULL)
return;
quickSort(array, low_index, high_index, size);
}