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

Method Node

LabEnv/05Lab/KdTree.java:164–169  ·  view source on GitHub ↗
(Point2D p, RectHV rect)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected