-
Notifications
You must be signed in to change notification settings - Fork 8
/
Main.java
68 lines (57 loc) · 2.25 KB
/
Main.java
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
import java.util.Random;
public class Main {
public static void radixSort(Integer[] arr, int maxDigit) {
Integer[][] bucket = new Integer[10][arr.length]; /* radix bucket */
int[] cnt = new int[10]; /* store the number of each digit */
for (int digit = 1; digit < maxDigit; digit *= 10) {
for (Integer num: arr) { /* put each number into the bucket */
int d = (num / digit) % 10;
bucket[d][cnt[d]] = num;
cnt[d]++;
}
int index = 0;
for (int i = 0; i < 10; ++i) { /* assign the numbers in the bucket back to arr */
if (cnt[i] != 0) {
for (int j = 0; j < cnt[i]; ++j) {
arr[index++] = bucket[i][j];
}
}
cnt[i] = 0;
}
}
}
public static void main(String[] args) {
int num = 20;
int rangeLeft = 1;
int rangeRight = 10000;
Integer[] arr = generateRandomIntegerArray(num, rangeLeft, rangeRight);
System.out.println("Original array: ");
printArray(arr);
radixSort(arr, rangeRight);
System.out.println("Sorted array: ");
printArray(arr);
}
/**
* @param num the number of array elements
* @param rangeLeft the left side of the range
* @param rangeRight the right side of the range
* @return an array containing N array element sizes between rangeLeft and rangeRight
*/
public static Integer[] generateRandomIntegerArray(int num, int rangeLeft, int rangeRight) {
if (rangeLeft > rangeRight)
throw new RuntimeException("Range is incorrect, rangeLeft must be greater than rangeRight");
Integer[] arr = new Integer[num];
Integer range = rangeRight - rangeLeft;
Random random = new Random();
for (int i = 0; i < num; i++) {
arr[i] = random.nextInt(range) + rangeLeft;
}
return arr;
}
public static <T> void printArray(T arr[]) {
for (T t : arr) {
System.out.print(t + " ");
}
System.out.println();
}
}