Английская Википедия:Component (graph theory)

Материал из Онлайн справочника
Перейти к навигацииПерейти к поиску

Шаблон:Good article Шаблон:Short description

Файл:Pseudoforest.svg
A graph with three components

In graph theory, a component of an undirected graph is a connected subgraph that is not part of any larger connected subgraph. The components of any graph partition its vertices into disjoint sets, and are the induced subgraphs of those sets. A graph that is itself connected has exactly one component, consisting of the whole graph. Components are sometimes called connected components.

The number of components in a given graph is an important graph invariant, and is closely related to invariants of matroids, topological spaces, and matrices. In random graphs, a frequently occurring phenomenon is the incidence of a giant component, one component that is significantly larger than the others; and of a percolation threshold, an edge probability above which a giant component exists and below which it does not.

The components of a graph can be constructed in linear time, and a special case of the problem, connected-component labeling, is a basic technique in image analysis. Dynamic connectivity algorithms maintain components as edges are inserted or deleted in a graph, in low time per change. In computational complexity theory, connected components have been used to study algorithms with limited space complexity, and sublinear time algorithms can accurately estimate the number of components.

Definitions and examples

Файл:Equivalentie.svg
A cluster graph with seven components

A component of a given undirected graph may be defined as a connected subgraph that is not part of any larger connected subgraph. For instance, the graph shown in the first illustration has three components. Every vertex <math>v</math> of a graph belongs to one of the graph's components, which may be found as the induced subgraph of the set of vertices reachable from Шаблон:Nowrap Every graph is the disjoint union of its components.Шаблон:R Additional examples include the following special cases:

Another definition of components involves the equivalence classes of an equivalence relation defined on the graph's vertices. In an undirected graph, a Шаблон:Nowrap is reachable from a Шаблон:Nowrap if there is a path from <math>u</math> Шаблон:Nowrap or equivalently a walk (a path allowing repeated vertices and edges). Reachability is an equivalence relation, since:

The equivalence classes of this relation partition the vertices of the graph into disjoint sets, subsets of vertices that are all reachable from each other, with no additional reachable pairs outside of any of these subsets. Each vertex belongs to exactly one equivalence class. The components are then the induced subgraphs formed by each of these equivalence classes.Шаблон:R Alternatively, some sources define components as the sets of vertices rather than as the subgraphs they induce.Шаблон:R

Similar definitions involving equivalence classes have been used to defined components for other forms of graph connectivity, including the weak componentsШаблон:R and strongly connected components of directed graphsШаблон:R and the biconnected components of undirected graphs.Шаблон:R

Number of components

The number of components of a given finite graph can be used to count the number of edges in its spanning forests: In a graph with <math>n</math> vertices and <math>c</math> components, every spanning forest will have exactly <math>n-c</math> edges. This number <math>n-c</math> is the matroid-theoretic rank of the graph, and the rank of its graphic matroid. The rank of the dual cographic matroid equals the circuit rank of the graph, the minimum number of edges that must be removed from the graph to break all its cycles. In a graph with <math>m</math> edges, <math>n</math> vertices and <math>c</math> components, the circuit rank is Шаблон:Nowrap

A graph can be interpreted as a topological space in multiple ways, for instance by placing its vertices as points in general position in three-dimensional Euclidean space and representing its edges as line segments between those points.Шаблон:R The components of a graph can be generalized through these interpretations as the topological connected components of the corresponding space; these are equivalence classes of points that cannot be separated by pairs of disjoint closed sets. Just as the number of connected components of a topological space is an important topological invariant, the zeroth Betti number, the number of components of a graph is an important graph invariant, and in topological graph theory it can be interpreted as the zeroth Betti number of the graph.Шаблон:R

The number of components arises in other ways in graph theory as well. In algebraic graph theory it equals the multiplicity of 0 as an eigenvalue of the Laplacian matrix of a finite graph.Шаблон:R It is also the index of the first nonzero coefficient of the chromatic polynomial of the graph, and the chromatic polynomial of the whole graph can be obtained as the product of the polynomials of its components.Шаблон:R Numbers of components play a key role in the Tutte theorem characterizing finite graphs that have perfect matchingsШаблон:R and the associated Tutte–Berge formula for the size of a maximum matching,Шаблон:R and in the definition of graph toughness.Шаблон:R

Algorithms

It is straightforward to compute the components of a finite graph in linear time (in terms of the numbers of the vertices and edges of the graph) using either breadth-first search or depth-first search. In either case, a search that begins at some particular Шаблон:Nowrap will find the entire component Шаблон:Nowrap (and no more) before returning. All components of a graph can be found by looping through its vertices, starting a new breadth-first or depth-first search whenever the loop reaches a vertex that has not already been included in a previously found component. Шаблон:Harvtxt describe essentially this algorithm, and state that it was already "well known".Шаблон:R

Connected-component labeling, a basic technique in computer image analysis, involves the construction of a graph from the image and component analysis on the graph. The vertices are the subset of the pixels of the image, chosen as being of interest or as likely to be part of depicted objects. Edges connect adjacent pixels, with adjacency defined either orthogonally according to the Von Neumann neighborhood, or both orthogonally and diagonally according to the Moore neighborhood. Identifying the connected components of this graph allows additional processing to find more structure in those parts of the image or identify what kind of object is depicted. Researchers have developed component-finding algorithms specialized for this type of graph, allowing it to be processed in pixel order rather than in the more scattered order that would be generated by breadth-first or depth-first searching. This can be useful in situations where sequential access to the pixels is more efficient than random access, either because the image is represented in a hierarchical way that does not permit fast random access or because sequential access produces better memory access patterns.Шаблон:R

There are also efficient algorithms to dynamically track the components of a graph as vertices and edges are added, by using a disjoint-set data structure to keep track of the partition of the vertices into equivalence classes, replacing any two classes by their union when an edge connecting them is added. These algorithms take amortized time <math>O(\alpha(n))</math> per operation, where adding vertices and edges and determining the component in which a vertex falls are both operations, and <math>\alpha</math> is a very slowly growing inverse of the very quickly growing Ackermann function.Шаблон:R One application of this sort of incremental connectivity algorithm is in Kruskal's algorithm for minimum spanning trees, which adds edges to a graph in sorted order by length and includes an edge in the minimum spanning tree only when it connects two different components of the previously-added subgraph.Шаблон:R When both edge insertions and edge deletions are allowed, dynamic connectivity algorithms can still maintain the same information, in amortized time <math>O(\log^2 n/\log\log n)</math> per change and time <math>O(\log n/\log\log n)</math> per connectivity query,Шаблон:R or in near-logarithmic randomized expected time.Шаблон:R

Components of graphs have been used in computational complexity theory to study the power of Turing machines that have a working memory limited to a logarithmic number of bits, with the much larger input accessible only through read access rather than being modifiable. The problems that can be solved by machines limited in this way define the complexity class L. It was unclear for many years whether connected components could be found in this model, when formalized as a decision problem of testing whether two vertices belong to the same component, and in 1982 a related complexity class, SL, was defined to include this connectivity problem and any other problem equivalent to it under logarithmic-space reductions.Шаблон:R It was finally proven in 2008 that this connectivity problem can be solved in logarithmic space, and therefore that Шаблон:Nowrap

In a graph represented as an adjacency list, with random access to its vertices, it is possible to estimate the number of connected components, with constant probability of obtaining additive (absolute) error at most <math>\varepsilon n</math>, in sublinear time <math>O(\varepsilon^{-2}\log\varepsilon^{-1})</math>.Шаблон:R

In random graphs

Шаблон:Main

Файл:Critical 1000-vertex Erdős–Rényi–Gilbert graph.svg
An Erdős–Rényi–Gilbert random graph with 1000 vertices with edge probability <math>p=1/(n-1)</math> (in the critical range), showing a large component and many small ones

In random graphs the sizes of components are given by a random variable, which, in turn, depends on the specific model of how random graphs are chosen. In the <math>G(n, p)</math> version of the Erdős–Rényi–Gilbert model, a graph on <math>n</math> vertices is generated by choosing randomly and independently for each pair of vertices whether to include an edge connecting that pair, with Шаблон:Nowrap of including an edge and probability <math>1-p</math> of leaving those two vertices without an edge connecting them.Шаблон:R The connectivity of this model depends Шаблон:Nowrap and there are three different ranges Шаблон:Nowrap with very different behavior from each other. In the analysis below, all outcomes occur with high probability, meaning that the probability of the outcome is arbitrarily close to one for sufficiently large values Шаблон:Nowrap The analysis depends on a parameter <math>\varepsilon</math>, a positive constant independent of <math>n</math> that can be arbitrarily close to zero.

Subcritical <math>p < (1-\varepsilon)/n</math>
In this range of <math>p</math>, all components are simple and very small. The largest component has logarithmic size. The graph is a pseudoforest. Most of its components are trees: the number of vertices in components that have cycles grows more slowly than any unbounded function of the number of vertices. Every tree of fixed size occurs linearly many times.Шаблон:R
Critical <math>p \approx 1/n</math>
The largest connected component has a number of vertices proportional to Шаблон:Nowrap There may exist several other large components; however, the total number of vertices in non-tree components is again proportional to Шаблон:Nowrap
Supercritical <math>p >(1+\varepsilon)/n</math>
There is a single giant component containing a linear number of vertices. For large values of <math>p</math> its size approaches the whole graph: <math>|C_1| \approx yn</math> where <math>y</math> is the positive solution to the equation Шаблон:Nowrap The remaining components are small, with logarithmic size.Шаблон:R

In the same model of random graphs, there will exist multiple connected components with high probability for values of <math>p</math> below a significantly higher threshold, Шаблон:Nowrap and a single connected component for values above the threshold, Шаблон:Nowrap This phenomenon is closely related to the coupon collector's problem: in order to be connected, a random graph needs enough edges for each vertex to be incident to at least one edge. More precisely, if random edges are added one by one to a graph, then with high probability the first edge whose addition connects the whole graph touches the last isolated vertex.Шаблон:R

For different models including the random subgraphs of grid graphs, the connected components are described by percolation theory. A key question in this theory is the existence of a percolation threshold, a critical probability above which a giant component (or infinite component) exists and below which it does not.Шаблон:R

References

Шаблон:Reflist

External links