MCPcopy Create free account
hub / github.com/MolinDeng/Princeton-algs4 / Node

Class Node

05Lab-Kd Tree/KdTree.java:159–170  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157 }
158
159 private static class Node {
160 private Point2D p;
161 private RectHV rect;
162 private Node left, right;
163
164 Node(Point2D p, RectHV rect) {
165 this.p = p;
166 this.rect = rect;
167 this.left = null;
168 this.right = null;
169 }
170 }
171
172
173 public static void main(String[] args) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected