Tree-depth explained
is a numerical
invariant of
, the minimum height of a
Trémaux tree for a supergraph of
. This invariant and its close relatives have gone under many different names in the literature, including vertex ranking number, ordered chromatic number, and minimum elimination tree height; it is also closely related to the
cycle rank of
directed graphs and the
star height of
regular languages.
[1] Intuitively, where the
treewidth of a graph measures how far it is from being a
tree, this parameter measures how far a graph is from being a
star.
Definitions
The tree-depth of a graph
may be defined as the minimum height of a forest
with the property that every edge of
connects a pair of nodes that have an ancestor-descendant relationship to each other in
.
[2] If
is connected, this forest must be a single tree; it need not be a subgraph of
, but if it is, it is a
Trémaux tree for
.
The set of ancestor-descendant pairs in
forms a
trivially perfect graph, and the height of
is the size of the largest
clique in this graph. Thus, the tree-depth may alternatively be defined as the size of the largest clique in a trivially perfect supergraph of
, mirroring the definition of
treewidth as one less than the size of the largest clique in a
chordal supergraph of
.
[3] Another definition is the following:
where
is the set of vertices of
and the
are the connected components of
.
[4] This definition mirrors the definition of
cycle rank of directed graphs, which uses strong connectivity and strongly connected components in place of undirected connectivity and connected components.
Tree-depth may also be defined using a form of graph coloring. A centered coloring of a graph is a coloring of its vertices with the property that every connected induced subgraph has a color that appears exactly once. Then, the tree-depth is the minimum number of colors in a centered coloring of the given graph. If
is a forest of height
with the property that every edge of
connects an ancestor and a descendant in
, then a centered coloring of
using
colors may be obtained by coloring each vertex by its distance from the root of its tree in
.
[5] Finally, one can define this in terms of a pebble game, or more precisely as a cops and robber game. Consider the following game, played on an undirected graph. There are two players, a robber and a cop. The robber has one pebble he can move along the edges of the given graph. The cop has an unlimited number of pebbles, but she wants to minimize the amount of pebbles she uses. The cop cannot move a pebble after it has been placed on the graph. The game proceeds as follows. The robber places his pebble. The cop then announces where she wants to place a new cop pebble. The robber can then move his pebble along edges, but not through occupied vertices. The game is over when the cop player places a pebble on top of the robber pebble. The tree-depth of the given graph is the minimum number of pebbles needed by the cop to guarantee a win.[6] For a star graph, two pebbles suffice: the strategy is to place a pebble at the center vertex, forcing the robber to one arm, and then to place the remaining pebble on the robber. For a path with
vertices, the cop uses a
binary search strategy, which guarantees that at most
pebbles are needed.
Examples
The tree-depth of a complete graph equals its number of vertices. For, in this case, the only possible forest
for which every pair of vertices are in an ancestor-descendant relationship is a single path. Similarly, the tree-depth of a
complete bipartite graph
is
. For, the nodes that are placed at the leaves of the forest
must have at least
ancestors in
. A forest achieving this
bound may be constructed by forming a path for the smaller side of the bipartition, with each vertex on the larger side of the bipartition forming a leaf in
connected to the bottom vertex of this path.
The tree-depth of a path with
vertices is exactly
. A forest
representing this path with this depth may be formed by placing the midpoint of the path as the root of
and recursing within the two smaller paths on either side of it.
[7] Depth of trees and relation to treewidth
Any
-vertex
forest has tree-depth
. For, in a forest, one can always find a constant number of vertices the removal of which leaves a forest that can be partitioned into two smaller subforests with at most
vertices each. By recursively partitioning each of these two subforests, one can easily derive a logarithmic upper bound on the tree-depth. The same technique, applied to a
tree decomposition of a graph, shows that, if the
treewidth of an
-vertex graph
is
, then the tree-depth of
is
.
[8] Since
outerplanar graphs,
series–parallel graphs, and
Halin graphs all have bounded treewidth, they all also have at most logarithmic tree-depth. The typical graphs with large treedepth and small treewidth are the perfect binary trees and the paths. Precisely, there is a constant
with the following property: if a graph has treedepth at least
and treewidth less than
then it contains a perfect binary tree with height
or a path of length
as a minor.
In the other direction, the treewidth of a graph is at most equal to its tree-depth. More precisely, the treewidth is at most the pathwidth, which is at most one less than the tree-depth.[9]
Graph minors
A minor of a graph
is another graph formed from a subgraph of
by contracting some of its edges. Tree-depth is monotonic under minors: every minor of a graph
has tree-depth at most equal to the tree-depth of
itself.
[10] Thus, by the
Robertson–Seymour theorem, for every fixed
the set of graphs with tree-depth at most
has a finite set of
forbidden minors.
If
is a class of graphs closed under taking graph minors, then the graphs in
have tree-depth
if and only if
does not include all the
path graphs.
[11] More precisely, there is a constant
such that every graph of treedepth at least
contains one of the following minors (each of treedepth at least
):
grid,
- the complete binary tree of height
,
.
Induced subgraphs
As well as behaving well under graph minors, tree-depth has close connections to the theory of induced subgraphs of a graph. Within the class of graphs that have tree-depth at most
(for any fixed integer
), the relation of being an induced subgraph forms a
well-quasi-ordering.
[12] The basic idea of the proof that this relation is a well-quasi-ordering is to use induction on
; the forests of height
may be interpreted as sequences of forests of height
(formed by deleting the roots of the trees in the height-
forest) and
Higman's lemma can be used together with the induction hypothesis to show that these sequences are well-quasi-ordered.
Well-quasi-ordering implies that any property of graphs that is monotonic with respect to induced subgraphs has finitely many forbidden induced subgraphs, and therefore may be tested in polynomial time on graphs of bounded tree-depth. The graphs with tree-depth at most
themselves also have a finite set of forbidden induced subgraphs.
[13] If
is a class of graphs with bounded
degeneracy, the graphs in
have bounded tree-depth if and only if there is a path graph that cannot occur as an induced subgraph of a graph in
.
[11] Complexity
Computing tree-depth is computationally hard: the corresponding decision problem is NP-complete.[14] The problem remains NP-complete for bipartite graphs, as well as for chordal graphs.[15]
On the positive side, tree-depth can be computed in polynomial time on interval graphs,[16] as well as on permutation, trapezoid, circular-arc, circular permutation graphs, and cocomparability graphs of bounded dimension.[17] For undirected trees, tree-depth can be computed in linear time.[18]
give an approximation algorithm for tree-depth with an approximation ratio of
, based on the fact that tree-depth is always within a logarithmic factor of the treewidth of a graph.
Because tree-depth is monotonic under graph minors, it is fixed-parameter tractable: there is an algorithm for computing tree-depth running in time where
is the depth of the given graph and
is its number of vertices. Thus, for every fixed value of
, the problem of testing whether the tree-depth is at most
can be solved in polynomial time. More specifically, the dependence on
in this algorithm can be made linear, by the following method: compute a depth first search tree, and test whether this tree's depth is greater than
. If so, the tree-depth of the graph is greater than
and the problem is solved. If not, the shallow depth first search tree can be used to construct a
tree decomposition with bounded width, and standard
dynamic programming techniques for graphs of bounded treewidth can be used to compute the depth in linear time.
[19] It is also possible to compute the tree-depth exactly, for graphs whose tree-depth may be large, in time
for a constant
slightly smaller than 2.
References
Notes and References
- ;, p. 116.
- , Definition 6.1, p. 115.
- .
- , Lemma 6.1, p. 117.
- , Section 6.5, "Centered Colorings", pp. 125–128.
- , Theorem 5,, Main Theorem.
- , Formula 6.2, p. 117.
- , Corollary 6.1, p. 124.
- , p. 123.
- , Lemma 6.2, p. 117.
- , Proposition 6.4, p. 122.
- , Lemma 6.13, p. 137.
- , p. 138. Figure 6.6 on p. 139 shows the 14 forbidden subgraphs for graphs of tree-depth at most three, credited to the 2007 Ph.D. thesis of Zdeněk Dvořák.
- .
- .
- .
- .
- .
- , p. 138. A more complicated linear time algorithm based on the planarity of the excluded minors for tree-depth was given earlier by . For improved parameterized algorithms see .