range_query (353B)
1 # Range query 2 3 Maintain a collection of points and answer queries asking about all the points in a specific range 4 5 - [range_sum]: sum the points 6 - [range_reporting]: report the points 7 - [gupta1995further]: range color counting/reporting in [rectangle] 8 9 See also: [skyline], [2d_range_reporting], [range_reporting], [range_tree] 10 11 Up: [query], [interval]