示例#1
0
 public BallTree(Matrix points, int k) {
   root = BallNode.buildBallNode(points, k);
 }