-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path104-heap_sort.c
executable file
·79 lines (64 loc) · 1.64 KB
/
104-heap_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
76
77
78
79
#include "sort.h"
void swapping_ints(int *a, int *b);
void maximum_heapify(int *array, size_t size, size_t base, size_t root);
void heap_sort(int *array, size_t size);
/**
* swapping_ints - Swapping two integers in an array
* @a: First integer to be swapped
* @b: Second integer to be swapped
*/
void swapping_ints(int *a, int *b)
{
int temp;
temp = *a;
*a = *b;
*b = temp;
}
/**
* maximum_heapify - Turn a binary tree into a complete binary heap.
* @array: An array of integers representing a binary tree.
* @size: Array or tree size
* @base: Index of the base row of the tree
* @root: Root node of the binary tree
*/
void maximum_heapify(int *array, size_t size, size_t base, size_t root)
{
size_t left, right, large;
left = 2 * root + 1;
right = 2 * root + 2;
large = root;
if (left < base && array[left] > array[large])
large = left;
if (right < base && array[right] > array[large])
large = right;
if (large != root)
{
swapping_ints(array + root, array + large);
print_array(array, size);
maximum_heapify(array, size, base, large);
}
}
/**
* heap_sort - Sorting an array of integers in ascending
* order using the Heap Sort algorithm.
* @array: Array of integers
* @size: Array size
*
* Description: Implementing the sift down heap sort
* algorithm.
* Printing the array after every swap
*/
void heap_sort(int *array, size_t size)
{
int x;
if (array == NULL || size < 2)
return;
for (x = (size / 2) - 1; x >= 0; x--)
maximum_heapify(array, size, size, x);
for (x = size - 1; x > 0; x--)
{
swapping_ints(array, array + x);
print_array(array, size);
maximum_heapify(array, size, x, 0);
}
}