-
Notifications
You must be signed in to change notification settings - Fork 0
/
RangeSearchVisualizer.java
103 lines (87 loc) · 3.58 KB
/
RangeSearchVisualizer.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
/* ******************************************************************************
* Compilation: javac RangeSearchVisualizer.java
* Execution: java RangeSearchVisualizer input.txt
* Dependencies: PointST.java KdTreeST.java
*
* Read points from a file (given as the command-line argument) and
* draw to standard draw. Also draw all of the points in the rectangle
* the user selects by dragging the mouse.
*
* The range search results using the brute-force algorithm are drawn
* in red; the results using the kd-tree algorithms are drawn in blue.
*
**************************************************************************** */
import edu.princeton.cs.algs4.In;
import edu.princeton.cs.algs4.Point2D;
import edu.princeton.cs.algs4.RectHV;
import edu.princeton.cs.algs4.StdDraw;
public class RangeSearchVisualizer {
public static void main(String[] args) {
// initialize the data structures with n points from file
String filename = args[0];
In in = new In(filename);
PointST<Integer> brute = new PointST<Integer>();
KdTreeST<Integer> kdtree = new KdTreeST<Integer>();
for (int i = 0; !in.isEmpty(); i++) {
double x = in.readDouble();
double y = in.readDouble();
Point2D p = new Point2D(x, y);
kdtree.put(p, i);
brute.put(p, i);
}
// the rectangle drawn by the user
double x0 = 0.0, y0 = 0.0; // initial endpoint of rectangle
double x1 = 0.0, y1 = 0.0; // current location of mouse
boolean isDragging = false; // is the user dragging a rectangle
// draw the points
StdDraw.clear();
StdDraw.setPenColor(StdDraw.BLACK);
StdDraw.setPenRadius(0.01);
for (Point2D p : brute.points())
p.draw();
// process query rectangle drawn by user
StdDraw.enableDoubleBuffering();
while (true) {
// user starts to drag a rectangle
if (StdDraw.isMousePressed() && !isDragging) {
x0 = x1 = StdDraw.mouseX();
y0 = y1 = StdDraw.mouseY();
isDragging = true;
}
// user is dragging a rectangle
else if (StdDraw.isMousePressed() && isDragging) {
x1 = StdDraw.mouseX();
y1 = StdDraw.mouseY();
}
// user stops dragging the rectangle
else if (!StdDraw.isMousePressed() && isDragging) {
isDragging = false;
}
// draw the points
StdDraw.clear();
StdDraw.setPenColor(StdDraw.BLACK);
StdDraw.setPenRadius(0.01);
for (Point2D p : brute.points())
p.draw();
// draw the rectangle
RectHV rect = new RectHV(Math.min(x0, x1), Math.min(y0, y1),
Math.max(x0, x1), Math.max(y0, y1));
StdDraw.setPenColor(StdDraw.BLACK);
StdDraw.setPenRadius();
rect.draw();
// draw the range search results for brute-force data structure in red
StdDraw.setPenRadius(0.03);
StdDraw.setPenColor(StdDraw.RED);
for (Point2D p : brute.range(rect))
p.draw();
// draw the range search results for kd-tree in blue
StdDraw.setPenRadius(0.02);
StdDraw.setPenColor(StdDraw.BLUE);
for (Point2D p : kdtree.range(rect))
p.draw();
// display everything on screen
StdDraw.show();
StdDraw.pause(20);
}
}
}