forked from williamfiset/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeapsort.java
More file actions
98 lines (69 loc) · 2.09 KB
/
Copy pathHeapsort.java
File metadata and controls
98 lines (69 loc) · 2.09 KB
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
94
95
96
97
98
/**
* Implementation of heapsort
* @author William Fiset, william.alexandre.fiset@gmail.com
**/
import java.util.*;
public class Heapsort {
public static void heapsort(int[] ar) {
if (ar == null) return;
int n = ar.length;
// Heapify, converts array into binary heap, O(n)
for (int i = Math.max(0,(n/2)-1); i >= 0; i--)
sink(ar, n, i);
// Sorting bit
for(int i = n-1; i >= 0; i--) {
swap(ar, 0, i);
sink(ar, i, 0);
}
}
private static void sink(int[] ar, int n, int i) {
while (true) {
int left = 2 * i + 1; // Left node
int right = 2 * i + 2; // Right node
int largest = i;
// Right child is larger than parent
if (right < n && ar[right] > ar[largest])
largest = right;
// Left child is larger than parent
if (left < n && ar[left] > ar[largest])
largest = left;
// Move down the tree following the largest node
if (largest != i) {
swap(ar, largest, i);
i = largest;
} else break;
}
}
private static void swap(int[] ar, int i, int j) {
int tmp = ar[i];
ar[i] = ar[j];
ar[j] = tmp;
}
/* TESTING */
public static void main(String[] args) {
int[] array = {10, 4, 6, 4, 8, -13, 2, 3};
heapsort(array);
System.out.println(java.util.Arrays.toString(array));
runTests();
}
static Random RANDOM = new Random();
public static void runTests() {
final int NUM_TESTS = 1000;
for(int i = 1; i <= NUM_TESTS; i++) {
int[] array = new int[i];
// for(int j = 0; j < i; j++) array[j] = randInt(-1000000, +1000000);
for(int j = 0; j < i; j++) array[j] = randInt(-10, +10);
int[] arrayCopy = array.clone();
heapsort(array);
java.util.Arrays.sort(arrayCopy);
if (!java.util.Arrays.equals(array, arrayCopy)) {
System.out.println(Arrays.toString(array));
System.out.println("ERROR");
break;
}
}
}
static int randInt(int min, int max) {
return RANDOM.nextInt((max - min) + 1) + min;
}
}