This repository has been archived by the owner on Mar 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStackComparisonTimer.java
102 lines (74 loc) · 2.77 KB
/
StackComparisonTimer.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
package assign06;
/**
* This class collects running times for methods of ArrayListSorter.
*
* @author Erin Parker, Paul Nuffer, Nils Streedain
* @version February 9, 2021
*/
public class StackComparisonTimer {
public static void main(String[] args) {
System.out.println("\nN\t\tnanoTime");
int incr = 100000;
for(int probSize = 100000; probSize <= 15000000; probSize += incr) {
int timesToLoop = 100000;
// First, spin computing stuff until one second has gone by.
// This allows this thread to stabilize.
long stopTime, midpointTime, startTime = System.nanoTime();
while(System.nanoTime() - startTime < Integer.MAX_VALUE) {}
//ListStack Push Setup
// LinkedListStack<Integer> listStack = new LinkedListStack<>();
// for (int i = 0; i < probSize; i++)
// listStack.push(0);
//ArrayStack Push Setup
// ArrayStack<Integer> arrayStack = new ArrayStack<>();
// for (int i = 0; i < probSize; i++)
// arrayStack.push(0);
//ListStack Pop Setup
// LinkedListStack<Integer> listStack = new LinkedListStack<>();
// for (int i = 0; i < probSize; i++)
// listStack.push(0);
//ArrayStack Pop Setup
// ArrayStack<Integer> arrayStack = new ArrayStack<>();
// for (int i = 0; i < probSize; i++)
// arrayStack.push(0);
//ListStack Peek Setup
LinkedListStack<Integer> listStack = new LinkedListStack<>();
for (int i = 0; i < probSize; i++)
listStack.push(0);
//ArrayStack Peek Setup
// ArrayStack<Integer> arrayStack = new ArrayStack<>();
// for (int i = 0; i < probSize; i++)
// arrayStack.push(0);
// Collect running times.
startTime = System.nanoTime();
for(int i = 0; i < timesToLoop; i++) {
// listStack.push(0);
// arrayStack.push(0);
// listStack.pop();
// arrayStack.pop();
for (int j = 0; j < 1000000000; j++)
listStack.peek();
// arrayStack.peek();
}
midpointTime = System.nanoTime();
// Capture the cost of running the loop and any other operations done
// above that are not the essential method call being timed.
for(int i = 0; i < timesToLoop; i++) {
// ListStack Push no subtract
// ArrayStack Push no subtract
// ListStack Pop no subtract
// ArrayStack Pop no subtract
// ListStack Peek no subtract
for (int j = 0; j < 1000000000; j++) {}
// ArrayStack Peek no subtract
}
stopTime = System.nanoTime();
// Compute the time, subtract the cost of running the loop
// from the cost of running the loop and searching.
// Average it over the number of runs.
double averageTime = ((midpointTime - startTime) -
(stopTime - midpointTime)) / (double) timesToLoop;
System.out.println(probSize + "\t" + String.format("%.5f", averageTime));
}
}
}