-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDriver.java
More file actions
37 lines (29 loc) · 724 Bytes
/
Copy pathDriver.java
File metadata and controls
37 lines (29 loc) · 724 Bytes
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
package sortingAnalysis;
public class Driver {
public static void main(String[] args) {
ListGenerator list;
list = new ListGenerator(100);
list.generateList(list.getNumberList());
// int[] arrayAscending = list.sortAscending();
// for (int number: arrayAscending)
// {
// System.out.println(number);
// }
//
// int[] arrayDescending = list.sortDescending();
// for (int number: arrayDescending)
// {
// System.out.println(number);
// }
// int[] arrayEighty = list.sortEighty();
// for (int number: arrayEighty)
// {
// System.out.println(number);
// }
// int[] arrayTwenty = list.sortTwenty();
// for (int number: arrayTwenty)
// {
// System.out.println(number);
// }
}
}