Interval Search Tree
**Problem **
Discuss Interval Search Tree
Idea behind Interval Search Tree
Lets discuss the 1D Interval search. By 1D I mean in 1 dimension i.e. having interval along 1 axis only. So, suppose along x axis we have collection of intervals - [1,2], [1,3] and so on.
Here Interval Tree or Interval Search tree is helpful as it holds set of (overlapping) intervals
Insert the interval Search delete Main functionality - Interval intersection query - given the interval (lo, hi) find all intervals in data structure which intersect with given interval.
[Read More]