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

Method KdTree

LabEnv/05Lab/KdTree.java:20–23  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

18
19 // construct an empty set of points
20 public KdTree() {
21 root = null;
22 n = 0;
23 }
24
25 // is the set empty?
26 public boolean isEmpty() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected