This repository was 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 pathBinarySearchTreeTimer.java
70 lines (52 loc) · 1.93 KB
/
BinarySearchTreeTimer.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
package assign08;
import java.util.ArrayList;
import java.util.Random;
import java.util.TreeSet;
/**
* This class collects running times for methods of GraphUtility.
*
* @author Erin Parker, Paul Nuffer, Nils Streedain
* @version March 10, 2021
*/
public class BinarySearchTreeTimer {
@SuppressWarnings("unused")
public static void main(String[] args) {
Random rng = new Random(1);
System.out.println("N\tnanoTime");
int incr = 2500;
for (int probSize = 10000; probSize <= 200000; probSize += incr) {
int timesToLoop = 2;
// adding in random order
ArrayList<Integer> intArray = new ArrayList<>();
ArrayList<Integer> randomArray = new ArrayList<>();
for (int j = 0; j < probSize; j++)
intArray.add(j);
for (int j = probSize; j > 0; j--) {
int temp = intArray.remove(rng.nextInt(j));
randomArray.add(temp);
}
// 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 < 1000000000) {
}
startTime = System.nanoTime();
for (int i = 0; i < timesToLoop; i++) {
// BinarySearchTree<Integer> bst = new BinarySearchTree<Integer>();
// bst.addAll(randomArray);
TreeSet<Integer> balanced = new TreeSet<>(randomArray);
}
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++) {
}
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));
}
}
}