-
Notifications
You must be signed in to change notification settings - Fork 0
/
DivideConquerTest.java
184 lines (141 loc) · 4.36 KB
/
DivideConquerTest.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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
package cs146F19.bedi.project2;
import static org.junit.jupiter.api.Assertions.*;
import java.io.File;
import java.util.ArrayList;
import java.util.Random;
import java.util.Scanner;
import org.junit.jupiter.api.Test;
class DivideConquerTest {
ArrayList<Integer> fileArr = new ArrayList<>(); // Stores all elements from the file
/* This test reads the file, store all the elements in an arraylist,
* creates and shifts all the elements in an array, calls the
* DivideConquer class with the array as the input and checks to see
* if the results match up.
*/
@Test
void test() {
try {
Scanner scan = new Scanner(new File("maxSumtest.txt"));
while(scan.hasNext()) {
fileArr.add(scan.nextInt());
}
scan.close();
}
catch(Exception e) {
System.out.println(e.getMessage());
}
// Inserts the first row of 100 elements into the array
int n = 100;
int[] array = new int[n];
for(int i = 0; i < n; i++) {
array[i] = fileArr.remove(0);
}
// Checks to see if the DivideConquer class works for the first 100 elements
DivideConquer dc = DivideConquer.MaxSubArray(array, 0, n - 1);
int expectedTotal = fileArr.remove(0);
assertEquals(expectedTotal, dc.getTotal());
int expectedArrival = fileArr.remove(0);
assertEquals(expectedArrival, dc.getStart());
int expectedDeparture = fileArr.remove(0);
assertEquals(expectedDeparture, dc.getEnd());
}
@Test
public void test1() {
int array[] = {-2, -3, 4, -1, -2, 1, 5, -3, 7, 2, 6};
DivideConquer a = DivideConquer.MaxSubArray(array, 0, array.length -1);
assertEquals(2, a.getStart());
assertEquals(10, a.getEnd());
assertEquals(19, a.getTotal());
}
@Test
public void test2() {
Random rand = new Random();
int[] array = new int[100];
for(int i = 0; i < 100; i++) {
array[i] = rand.nextInt();
}
long start = System.nanoTime();
DivideConquer.MaxSubArray(array, 0, array.length - 1);
long end = System.nanoTime();
long elapsedTime = end - start;
System.out.println("Run time for size 100 is " + elapsedTime/10);
}
@Test
public void test3() {
Random rand = new Random();
int[] array = new int[200];
for(int i = 0; i < 200; i++) {
array[i] = rand.nextInt();
}
long start = System.nanoTime();
DivideConquer.MaxSubArray(array, 0, array.length - 1);
long end = System.nanoTime();
long elapsedTime = end - start;
System.out.println("Run time for size 200 is " + elapsedTime/10);
}
@Test
public void test4() {
Random rand = new Random();
int[] array = new int[500];
for(int i = 0; i < 500; i++) {
array[i] = rand.nextInt();
}
long start = System.nanoTime();
DivideConquer.MaxSubArray(array, 0, array.length - 1);
long end = System.nanoTime();
long elapsedTime = end - start;
System.out.println("Run time for size 500 is " + elapsedTime/10);
}
@Test
public void test5() {
Random rand = new Random();
int[] array = new int[1000];
for(int i = 0; i < 1000; i++) {
array[i] = rand.nextInt();
}
long start = System.nanoTime();
DivideConquer.MaxSubArray(array, 0, array.length - 1);
long end = System.nanoTime();
long elapsedTime = end - start;
System.out.println("Run time for size 1000 is " + elapsedTime/10);
}
@Test
public void test6() {
Random rand = new Random();
int[] array = new int[2000];
for(int i = 0; i < 2000; i++) {
array[i] = rand.nextInt();
}
long start = System.nanoTime();
DivideConquer.MaxSubArray(array, 0, array.length - 1);
long end = System.nanoTime();
long elapsedTime = end - start;
System.out.println("Run time for size 2000 is " + elapsedTime/10);
}
@Test
public void test7() {
Random rand = new Random();
int[] array = new int[5000];
for(int i = 0; i < 5000; i++) {
array[i] = rand.nextInt();
}
long start = System.nanoTime();
DivideConquer.MaxSubArray(array, 0, array.length - 1);
long end = System.nanoTime();
long elapsedTime = end - start;
System.out.println("Run time for size 5000 is " + elapsedTime/10);
}
@Test
public void test8() {
Random rand = new Random();
int[] array = new int[10000];
for(int i = 0; i < 10000; i++) {
array[i] = rand.nextInt();
}
long start = System.nanoTime();
DivideConquer.MaxSubArray(array, 0, array.length - 1);
long end = System.nanoTime();
long elapsedTime = end - start;
System.out.println("Run time for size 10000 is " + elapsedTime/10);
}
}