ProGAL.dataStructures.rangeSearching.rangeTree
Class RangeTreeNode1d

java.lang.Object
  extended by ProGAL.dataStructures.rangeSearching.rangeTree.RangeTreeNode
      extended by ProGAL.dataStructures.rangeSearching.rangeTree.RangeTreeNode1d

public class RangeTreeNode1d
extends RangeTreeNode


Constructor Summary
RangeTreeNode1d(java.util.List<java.util.List<Point>> sortedpoints)
           
 
Method Summary
 java.util.List<Point> query(double[] low, double[] high)
          Return the points inside the given range.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RangeTreeNode1d

public RangeTreeNode1d(java.util.List<java.util.List<Point>> sortedpoints)
Method Detail

query

public java.util.List<Point> query(double[] low,
                                   double[] high)
Description copied from class: RangeTreeNode
Return the points inside the given range.

Specified by:
query in class RangeTreeNode