-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMain.java
57 lines (46 loc) · 1.62 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
import java.util.Random;
public class Main {
public static void insertionSort(Integer[] arr) {
for (int i = 1; i < arr.length; ++i) {
int tmp = arr[i], j;
for (j = i; j > 0 && arr[j - 1] > tmp; --j) {
arr[j] = arr[j - 1];
}
arr[j] = tmp;
}
}
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);
insertionSort(arr);
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();
}
}