-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path104-heap_sort.c
93 lines (77 loc) · 2.24 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#include "sort.h"
/**
* swap - Swaps the integers at two indices
* @array: Array of integers
* @idx_1: Index of first integer
* @idx_2: Index of second integer
*/
void swap(int *array, size_t idx_1, size_t idx_2)
{
int temp;
temp = array[idx_1];
array[idx_1] = array[idx_2];
array[idx_2] = temp;
}
/**
* heapify - Arrange an array of integers in a heap data structure
* @array: Array containing integers
* @or_size: Original size of the array
* @work_size: Current working size of the array
* @parent: Parent of the integer at the last index in the current working size
*/
void heapify(int *array, size_t or_size, size_t work_size, int parent)
{
size_t left_child = (2 * parent) + 1;
size_t right_child = (2 * parent) + 2;
int prev_parent = parent;
if (VALID_RIGHT_CHILD_GREATER_THAN_PARENT)
parent = right_child;
if (VALID_LEFT_CHILD_GREATER_THAN_PARENT)
parent = left_child;
if (parent != prev_parent)
{
swap(array, parent, prev_parent);
print_array(array, or_size);
}
if (VALID_PREV_PARENT_AND_SWAPPED)
heapify(array, or_size, work_size, ((work_size - 1) - 1) / 2);
else if (prev_parent > 0)
heapify(array, or_size, work_size, prev_parent - 1);
}
/**
* extract_and_insert - Extracts max integer and inserts at last working index
* @array: The array of integers
* @or_size: Original size of the array
* @max_idx: The highest index in the array
*/
void extract_and_insert(int *array, size_t or_size, size_t max_idx)
{
int last_parent;
if (max_idx == 0)
return;
max_idx = max_idx - 1;
last_parent = ((max_idx - 1) - 1) / 2;
/* To avoid swapping with itself */
if (max_idx != 0)
swap(array, 0, max_idx), print_array(array, or_size);
/* restore the heap data structure for them rest of the unsorted array */
heapify(array, or_size, max_idx, last_parent);
/* sort again */
extract_and_insert(array, or_size, max_idx);
}
/**
* heap_sort - Implements the heap sort algorithm
* @array: An array of integers
* @size: The size of the @array
*/
void heap_sort(int *array, size_t size)
{
size_t or_size = size;
size_t work_size = size;
int last_parent;
if (!array || size < 2)
return;
last_parent = ((size - 1) - 1) / 2;
heapify(array, or_size, work_size, last_parent);
extract_and_insert(array, or_size, work_size);
}