-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNearestNeighborVisualizer.java
67 lines (58 loc) · 2.46 KB
/
NearestNeighborVisualizer.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
/* *****************************************************************************
* Compilation: javac NearestNeighborVisualizer.java
* Execution: java NearestNeighborVisualizer input.txt
* Dependencies: PointST.java KdTreeST.java
*
* Read points from a file (specified as a command-line argument) and
* draw to standard draw. Highlight the closest point to the mouse.
*
* The nearest neighbor according to the brute-force algorithm is drawn
* in red; the nearest neighbor using the kd-tree algorithm is drawn in blue.
*
**************************************************************************** */
import edu.princeton.cs.algs4.In;
import edu.princeton.cs.algs4.Point2D;
import edu.princeton.cs.algs4.StdDraw;
public class NearestNeighborVisualizer {
public static void main(String[] args) {
String filename = args[0];
In in = new In(filename);
// initialize the two data structures with point from standard input
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);
}
// process nearest neighbor queries
StdDraw.enableDoubleBuffering();
while (true) {
// the location (x, y) of the mouse
double x = StdDraw.mouseX();
double y = StdDraw.mouseY();
Point2D query = new Point2D(x, y);
// draw all of the points
StdDraw.clear();
StdDraw.setPenColor(StdDraw.BLACK);
StdDraw.setPenRadius(0.01);
for (Point2D p : brute.points()) {
p.draw();
}
// draw in red the nearest neighbor according to the brute-force algorithm
StdDraw.setPenRadius(0.03);
StdDraw.setPenColor(StdDraw.RED);
Point2D bruteNearest = brute.nearest(query);
if (bruteNearest != null) bruteNearest.draw();
StdDraw.setPenRadius(0.02);
// draw in blue the nearest neighbor according to the kd-tree algorithm
StdDraw.setPenColor(StdDraw.BLUE);
Point2D kdtreeNearest = kdtree.nearest(query);
if (kdtreeNearest != null) kdtreeNearest.draw();
StdDraw.show();
StdDraw.pause(20);
}
}
}