Interval tree

Interval tree

In computer science, an interval tree, also called a segment tree or segtree, is an ordered tree data structure to hold intervals. Specifically, it allows one to efficiently find all intervals that overlap with any given interval or point. It is often used for windowing queries, for example, to find all roads on a computerized map inside a rectangular viewport, or to find all visible elements inside a three-dimensional scene.

The trivial solution is to visit each interval and test whether it intersects the given point or interval, which requires Θ("n") time, where "n" is the number of intervals in the collection. Since a query may return all intervals, for example if the query is a large interval intersecting all intervals in the collection, this is asymptotically optimal; however, we can do better by considering output-sensitive algorithms, where the runtime is expressed in terms of "m", the number of intervals produced by the query.

Naive approach

In a simple case, the intervals do not overlap and they can be inserted into a simple binary tree and queried in O(log "n") time. However, with arbitrarily overlapping intervals, there is no way to compare two intervals for insertion into the tree since orderings sorted by the beginning points or the ending points may be different. A naive approach might be to build two parallel trees, one ordered by the beginning point, and one ordered by the ending point of each interval. This allows discarding half of each tree in O(log "n") time, but the results must be merged, requiring O("n") time. This gives us queries in O("n" + log "n") = O("n"), which is no better than brute-force.

Interval trees solve this problem. This article describes two alternative designs for an interval tree, dubbed the "centered interval tree" and the "augmented tree".

Centered interval tree

Queries require O(log "n" + "m") time, with "n" being the total number of intervals and "m" being the number of reported results. Construction requires O("n" log "n") time, and storage requires O("n") space.

Construction

Given a set of "n" intervals on the number line, we want to construct a data structure so that we can efficiently retrieve all intervals overlapping another interval or point.

We start by taking the entire range of all the intervals and dividing it in half at "x_center" (in practice, "x_center" should be picked to keep the tree relatively balanced). This gives three sets of intervals, those completely to the left of "x_center" which we'll call "S_left", those completely to the right of "x_center" which we'll call "S_right", and those overlapping "x_center" which we'll call "S_center".

The intervals in "S_left" and "S_right" are recursively divided in the same manner until there are no intervals left.

The intervals in S_center that overlap the center point are stored in a separate data structure linked to the node in the interval tree. This data structure consists of two lists, one containing all the intervals sorted by their beginning points, and another containing all the intervals sorted by their ending points.

The result is a binary tree with each node storing:
* A center point
* A pointer to another node containing all intervals completely to the left of the center point
* A pointer to another node containing all intervals completely to the right of the center point
* All intervals overlapping the center point sorted by their beginning point
* All intervals overlapping the center point sorted by their ending point

Intersecting

Given the data structure constructed above, we receive queries consisting of ranges or points, and return all the ranges in the original set overlapping this input.

With an Interval

First, we can reduce the case where an interval "R" is given as input to the simpler case where a single point is given as input. We first find all ranges with beginning or end points inside the input interval "R" using a separately constructed tree. In the one-dimensional case, we can use a simple tree containing all the beginning and ending points in the interval set, each with a pointer to its corresponding interval.

A binary search in O(log "n") time for the beginning and end of R reveals the minimum and maximum points to consider. Each point within this range references an interval that overlaps our range and is added to the result list. Care must be taken to avoid duplicates, since an interval might begin and end within "R". This can be done using a binary flag on each interval to mark whether or not it has been added to the result set.

The only intervals not yet considered are those overlapping "R" that do not have a point inside "R", in other words, intervals that enclose it. To find these, we pick any point inside "R" and use the algorithm below to find all intervals intersecting that point (again, being careful to remove duplicates).

With a Point

The task is to find all intervals in the tree that overlap a given point "x". The tree is walked with a similar recursive algorithm as would be used to traverse a traditional binary tree, but with extra affordance for the intervals overlapping the "center" point at each node.

For each tree node, "x" is compared to "x_center", the midpoint used in node construction above. If "x" is less than "x_center", the leftmost set of intervals, "S_left", is considered. If "x" is greater than "x_center", the rightmost set of intervals, "S_right", is considered.

As each node is processed as we traverse the tree from the root to a leaf, the ranges in its "S_center" are processed. If "x" is less than "x_center", we know that all intervals in "S_center" end after "x", or they could not also overlap "x_center". Therefore, we need only find those intervals in "S_center" that begin before "x". We can consult the lists of "S_center" that have already been constructed. Since we only care about the interval beginnings in this scenario, we can consult the list sorted by beginnings. Suppose we find the closest number no greater than "x" in this list. All ranges from the beginning of the list to that found point overlap "x" because they begin before "x" and end after "x" (as we know because they overlap "x_center" which is larger than "x"). Thus, we can simply start enumerating intervals in the list until the endpoint value exceeds "x".

Likewise, if "x" is greater than "x_center", we know that all intervals in "S_center" must begin before "x", so we find those intervals that end after "x" using the list sorted by interval endings.

If "x" exactly matches "x_center", all intervals in "S_center" can be added to the results without further processing and tree traversal can be stopped.

Higher Dimensions

The interval tree data structure can be generalized to a higher dimension "N" with identical query and construction time and O("n" log "n") space.

First, a range tree in "N" dimensions is constructed that allows efficient retrieval of all intervals with beginning and end points inside the query region "R". Once the corresponding ranges are found, the only thing that is left are those ranges that enclose the region in some dimension. To find these overlaps, N interval trees are created, and one axis intersecting "R" is queried for each. For example, in two dimensions, the bottom of the square "R" (or any other horizontal line intersecting R) would be queried against the interval tree constructed for the horizontal axis. Likewise, the left (or any other vertical line intersecting R) would be queried against the interval tree constructed on the vertical axis.

Each interval tree also needs an addition for higher dimensions. At each node we traverse in the tree, "x" is compared with "S_center" to find overlaps. Instead of two sorted lists of points as was used in the one-dimensional case, a range tree is constructed. This allows efficient retrieval of all points in "S_center" that overlap region "R".

References

* Mark de Berg, Marc van Kreveld, Mark Overmars, and Otfried Schwarzkopf. "Computational Geometry", Second Revised Edition. Springer-Verlag 2000. Section 10.1: Interval Trees, pp.212-217.

Augmented tree

Another way to represent intervals is described in CLRS, Section 14.3: Interval trees, pp.311–317.

Both insertion and deletion require O(log "n") time, with "n" being the total number of intervals.

Use a simple ordered tree, for example a binary search tree or self-balancing binary search tree, where the tree is ordered by the 'low' values of the intervals, and an extra annotation is added to every node recording the maximum high value of both its subtrees. It is simple to maintain this attribute in only O("h") steps during each addition or removal of a node, where "h" is the height of the node added or removed in the tree, by updating all ancestors of the node from the bottom up. Additionally, the tree rotations used during insertion and deletion may require updating the high value of the affected nodes.

Now, it's known that two intervals "A" and "B" overlap only when both "A".low ≤ "B".high and "A".high ≥ "B".low. When searching the trees for nodes overlapping with a given interval, you can immediately skip:
* all nodes to the right of nodes whose low value is past the end of the given interval.
* all nodes that have their maximum 'high' value below the start of the given interval.

A total order can be defined on the intervals by ordering them first by their 'low' value and finally by their'high' value. This ordering can be used to prevent duplicate intervals from being inserted into the tree in O(log "n") time, versus the O("k" + log "n") time required to find duplicates if "k" intervals overlap a new interval.

Java Example: Adding a new interval to the tree

The key of each node is the interval itself and the value of each node is the end point of the interval:

public void add (Interval i) { put (i, i.getEnd ()); }

Java Example: Searching an interval in the tree

To search for an interval, you walk the tree, omitting those branches which can't contain what you're looking for. The simple case is looking for a point:

// Search for all intervals which contain "p", starting with the node "n" // and adding matching intervals to the list "result" public void search (IntervalNode n, Point p, List result) { // Don't search nodes that don't exist if (n = null) return; // if p is to the right of the rightmost point of any interval // in this node and all children, there won't be any matches. if (p.compareTo (n.getValue ()) > 0) return; // Search left children if (n.getLeft () != null) search (cast (n.getLeft ()), p, result); // Check this node if (n.getKey ().contains (p)) result.add (n.getKey ()); // If p is to the left of the start of this interval, then // it can't be in any child to the right. if (p.compareTo (n.getKey ().getStart ()) < 0) return; // Otherwise, search right children if (n.getRight () != null) search (cast (n.getRight ()), p, result); }

The code to search for an interval is exactly the same except for the check in the middle:

// Check this node if (n.getKey ().overlapsWith (i)) result.add (n.getKey ());

overlapsWith() is defined as:

public boolean overlapsWith (Interval other) { return start.compareTo (other.getEnd ()) <= 0 && end.compareTo (other.getStart ()) >= 0 ; }

Higher dimension

This is can be extended to higher dimensions, by cycling through the dimensions at each level of the tree. For example, for two dimensions, the odd levels of the tree might contain ranges for the "x" coordinate, while the even levels contain ranges for the "y" coordinate. However, it is not quite obvious how the rotation logic will have to be extended for such cases to keep the tree balanced.

A much more simple solution is to use nested interval trees. First, create a tree using the ranges for the "y" coordinate. Now, for each node in the tree, add another interval tree which contains the "x" coordinate for all elements which occupy the same vertical interval.

The advantage of this solution is that it can be extended to an arbitrary amount of dimensions using the same code base.

At first, the cost for the additional trees might seem prohibitive but that is usually not the case. As with the solution above, you need one node per "x" coordinate, so this cost is the same in both solutions. The only difference is that you need an additional tree structure per vertical interval. This structure is typically very small (a pointer to the root node plus maybe the number of nodes and the height of the tree).

References

* (referred to by the abbreviation CLRS for the names of the authors)
*

Other

As a closing note to the chapter, CLRS mentions::"Preparata and Shamos describe several of the interval trees that appear in the literature. Among the more important theoretically are those due independently to H. Edelsbrunner (1980) and E. M. McCreight (1981), which, in a database of n intervals, allow all k intervals that overlap a given query interval to be enumerated in O(k + log n) time."


Wikimedia Foundation. 2010.

Игры ⚽ Поможем написать курсовую

Look at other dictionaries:

  • Tree (data structure) — A simple unordered tree; in this diagram, the node labeled 7 has two children, labeled 2 and 6, and one parent, labeled 2. The root node, at the top, has no parent. In computer science, a tree is a widely used data structure that emulates a… …   Wikipedia

  • Tree — /tree/, n. Sir Herbert Beerbohm /bear bohm/, (Herbert Beerbohm), 1853 1917, English actor and theater manager; brother of Max Beerbohm. * * * I Woody perennial plant. Most trees have a single self supporting trunk containing woody tissues, and in …   Universalium

  • Interval graph — In graph theory, an interval graph is the intersection graph of a set of intervals on the real line. It has one vertex for each interval in the set, and an edge between every pair of vertices corresponding to intervals that intersect.Formally,… …   Wikipedia

  • Interval (mathematics) — This article is about intervals of real numbers. For intervals in general mathematics, see Partially ordered set. For other uses, see Interval. In mathematics, a (real) interval is a set of real numbers with the property that any number that lies …   Wikipedia

  • tree — treelike, adj. /tree/, n., v., treed, treeing. n. 1. a plant having a permanently woody main stem or trunk, ordinarily growing to a considerable height, and usually developing branches at some distance from the ground. 2. any of various shrubs,… …   Universalium

  • Segment tree — In computer science, a segment tree is a tree data structure for storing intervals, or segments. It allows querying which of the stored segments contain a given point. It is, in principle, a static structure; that is, its content cannot be… …   Wikipedia

  • Kd-tree — In computer science, a k d tree (short for k dimensional tree ) is a space partitioning data structure for organizing points in a k dimensional space. k d trees are a useful data structure for several applications, such as searches involving a… …   Wikipedia

  • Binary tree — Not to be confused with B tree. A simple binary tree of size 9 and height 3, with a root node whose value is 2. The above tree is unbalanced and not sorted. In computer science, a binary tree is a tree data structure in which each node has at… …   Wikipedia

  • Radix tree — In computer science, a radix tree (also patricia trie or radix trie) is a space optimized trie data structure where each node with only one child is merged with its child. The result is that every internal node has at least two children. Unlike… …   Wikipedia

  • Dancing tree — For the film Dancing tree, see Dancing tree (film) In computer science, a dancing tree is a tree data structure, which is similar to B+ tree. Invented by Hans Reiser, for use by the Reiser4 file system. As opposed to self balancing binary search… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”