Component Order Connectivity (COC)
- Component Order Connectivity (COC) is a graph vulnerability measure that evaluates how few deletions can fragment a graph into small connected components.
- It extends classical problems like Vertex Cover by incorporating weighted, directed, and exact-size variants, and uses kernelization and fixed-parameter tractability techniques.
- COC plays a key role in network reliability, spectral graph theory, and algorithmic graph decomposition, offering actionable insights for designing robust interconnection networks.
Component Order Connectivity (COC) is a graph-theoretic vulnerability measure centered on component order after deletions. In the standard unweighted formulation, given a graph and integers and , the question is whether there exists a vertex set with such that the size of the largest connected component in is at most [(Kumar et al., 2016); (Drange et al., 2014)]. Closely related literature uses equivalent parameter language such as -component order connectivity , where one asks for the minimum number of vertices whose removal results in an induced subgraph in which every component has order at most , and 0-component order edge connectivity 1, where edge deletions play the analogous role (Yatauro, 2023). Weighted, directed, exact-size, and lower-bounded-size variants extend the same basic idea by replacing vertex cardinality with weights, connected components with strongly connected components, the upper bound “at most 2” with the exact requirement “exactly 3,” or by requiring each post-deletion component to have order at least a threshold [(Drange et al., 2014); (Bang-Jensen et al., 2020); (Liu et al., 19 May 2026); (Zhang et al., 26 Sep 2025)]. This suggests that COC functions both as a specific deletion problem and as a broader component-order-aware connectivity paradigm.
1. Definitions and terminological scope
The standard unweighted decision problem asks whether, for a graph 4 and integers 5, there exists 6 with 7 such that every connected component of 8 has size at most 9 [(Drange et al., 2014); (Kumar et al., 2016)]. Equivalently, 0 is a hitting set for all connected vertex sets of size 1 (Kumar et al., 2016). In optimization form, one minimizes 2 subject to the maximum component order of 3 being at most 4 (Drange et al., 2014).
A closely aligned notation defines the 5-component order connectivity 6 as the minimum number of vertices whose removal results in an induced subgraph in which every component has order at most 7, and the 8-component order edge connectivity 9 as the minimum number of edges whose removal results in a subgraph in which every component has order at most 0 (Yatauro, 2023). The shift by one is purely notational: the parameter 1 in 2 or 3 corresponds to a maximum allowed component order of 4.
Several canonical special cases anchor the subject. When 5, the condition that every component in 6 has exactly one vertex means that 7 is an independent set, so COC reduces to Vertex Cover (Jain et al., 2024, Liu et al., 19 May 2026). When 8 in the notation used for weighted and unweighted COC kernelization, the problem is again Vertex Cover (Casel et al., 2024). This identification is structurally important: many kernelization techniques for COC are explicit generalizations of crown-based reductions for Vertex Cover (Kumar et al., 2016, Liu et al., 19 May 2026).
The weighted formulation replaces cardinalities by vertex weights. If 9 and 0, then the weight of a heaviest component of a graph 1 is
2
where 3 are the connected components of 4 (Drange et al., 2014). Weighted Component Order Connectivity (wCOC) asks whether there exists 5 such that 6 and 7 (Drange et al., 2014). The paper introducing wCOC explicitly describes it as a refined version of weighted vertex integrity (Drange et al., 2014).
2. Principal variants and related parameters
The literature does not restrict COC to a single formulation. Instead, it contains a family of component-order-aware deletion parameters that differ in what is constrained after deletion: the largest component, every component, the exact order of every component, the number of components, or the minimum order of each component.
| Variant | Post-deletion condition | Representative source |
|---|---|---|
| COC / 8-COC | every connected component has size at most 9 | (Drange et al., 2014, Kumar et al., 2016) |
| wCOC | 0 and 1 | (Drange et al., 2014) |
| Component order edge connectivity | every component has order at most 2 after edge deletions | (Yatauro, 2023) |
| Directed COC (DCOC) | every strongly connected component of 3 has size at most 4 | (Bang-Jensen et al., 2020) |
| 5-Exact COC | every connected component in 6 has exactly 7 vertices | (Liu et al., 19 May 2026) |
| 8-extra 9-component connectivity | 0 has at least 1 components, each of order at least 2 | (Zhang et al., 26 Sep 2025) |
The exact variant sharpens the usual upper-bound requirement. In 3-Exact Component Order Connectivity, the question is whether one can delete at most 4 vertices so that every connected component in 5 has exactly 6 vertices (Liu et al., 19 May 2026). This specializes to Vertex Cover when 7, and to Deletion to Induced Matching when 8 (Liu et al., 19 May 2026).
A different branch of the literature constrains component order from below rather than above. The 9-extra 0-component connectivity 1 is the minimum number of vertices whose removal produces a disconnected graph with at least 2 components, where each component contains at least 3 vertices (Zhang et al., 26 Sep 2025). Likewise, 4-good 5-component connectivity 6 requires at least 7 components and, in addition, every remaining vertex to have at least 8 neighbors in the remaining graph; this implies that every component of 9 has order at least 0 (Ding et al., 2024). These lower-bounded-size formulations are not the same as standard COC, but they are explicitly component-order-aware.
Component connectivity, by contrast, constrains the number of components rather than their order. For a non-complete connected graph 1, a 2-component cut is a set 3 such that 4 has at least 5 connected components, and
6
(Zhao et al., 2018). The folded-hypercube paper explicitly states that in COC language, the basic COC without order constraints is exactly this notion (Zhao et al., 2018). This places component connectivity and COC in the same reliability family, but with different emphasis: number of components versus maximum or minimum component order.
3. Algorithmic complexity and kernelization
The algorithmic landscape of COC is sharply stratified by graph class, weighting, and parameterization. On arbitrary graphs, wCOC is weakly NP-complete already on complete graphs, COC is NP-complete on split graphs, and COC is W[1]-hard on split graphs when parameterized by 7 or by 8 (Drange et al., 2014). For the combined parameter 9, however, wCOC is fixed-parameter tractable: it can be solved in
0
time, and it admits a kernel with at most
1
vertices; moreover, there is no algorithm of time 2 for COC unless the Exponential Time Hypothesis fails (Drange et al., 2014).
On interval graphs the situation is more favorable. Weighted COC can be solved in
3
time, while the unweighted version can be solved in 4 time on this class (Drange et al., 2014). These algorithms use interval models, clique paths, and dynamic programming over separator structure (Drange et al., 2014).
Kernelization has been a central theme. A linear-programming-based kernel with at most 5 vertices was proved for 6-COC, initially in 7 time for every constant 8, and then with a separation oracle implying running time 9 (Kumar et al., 2016). Later work on vulnerability measures improved the weighted COC kernel from 00 to
01
and also gave a combinatorial algorithm that provides a 02 vertex kernel in FPT-runtime when parameterized by 03, where 04 is the size of a maximum 05-packing (Casel et al., 2024). The same work shows that this 06 kernelization can be transformed into a polynomial algorithm for the special cases 07 and claw-free graphs (Casel et al., 2024).
The exact-size variant also admits linear kernels. 08-Exact Component Order Connectivity has a kernel with
09
vertices computable in 10 time (Liu et al., 19 May 2026). This yields a 11-vertex kernel for Vertex Cover when 12, and a 13-vertex kernel for Deletion to Induced Matching when 14, improving the previously known 15-vertex kernel for that case (Liu et al., 19 May 2026).
These kernelizations rely on generalized crown structures. The 2016 16 kernel uses a linear programming relaxation together with a weighted generalization of the 17-Expansion Lemma (Kumar et al., 2016). The 2024 work combines balanced crown decomposition, demanded balanced expansions, and weighted crown reductions to unify and extend earlier approaches for VI, wVI, and wCOC (Casel et al., 2024). The 2026 exact-size kernel introduces ECOC crown decompositions in which the crown side consists of connected components of size exactly 18 rather than an independent set (Liu et al., 19 May 2026).
4. Degree conditions, extremal structure, and spectral viewpoints
COC also has a strong extremal side. For the vertex version, degree sequences can force lower bounds on 19-component order connectivity. If 20 and 21, then the degree-sequence condition
22
implies that every realization is forcibly 23-component order 24-connected (Yatauro, 2023). For the edge version, if 25 and 26, then
27
implies that every realization is forcibly 28-component order 29-edge connected (Yatauro, 2023). These statements are part of a broader program of best monotone theorems based on degree-sequence majorization and sink characterization (Yatauro, 2023).
The same paper shows that the complexity of optimal degree conditions grows rapidly. For 30 and 31, there are at least 32 sinks for “33-component order 34-edge connected,” where 35 is the integer partition function (Yatauro, 2023). This links optimal monotone criteria for COC-style edge connectivity to the combinatorics of integer partitions (Yatauro, 2023).
Spectral extremal graph theory has recently incorporated component-order-aware connectivity constraints. For graphs of order 36, minimum degree 37, and fixed 38-good 39-component connectivity 40, the maximum adjacency spectral radius is attained by explicit join-of-cliques constructions, with six cases depending on inequalities among 41 (Ding et al., 2024). The extremal graphs are described in the paper as having the general form of a “small clique representing the cut” joined to “one big clique” and 42 equal cliques (Ding et al., 2024). For 43-extra 44-component connectivity 45, the corresponding extremal problem for the distance spectral radius likewise yields join constructions, with distinct optimal forms in the regimes 46, 47, and 48 (Zhang et al., 26 Sep 2025). These results show that component-order constraints are compatible with sharp spectral extremal characterizations.
5. Reliability, interconnection networks, and other applications
A principal motivation for component-order-aware connectivity is network reliability. In interconnection networks, vertices model processors and edges model communication links; classical connectivity only detects the first disconnection threshold, whereas component-based measures quantify how rapidly the network fragments into many or small pieces under faults (Zhao et al., 2018). The folded-hypercube study explicitly argues that traditional connectivity “always underestimates the resilience of large networks,” while component connectivity “can more accurately evaluate the reliability and fault tolerance for large-scale parallel processing systems” (Zhao et al., 2018).
For the 49-dimensional folded hypercube 50, the paper determines the 51-component connectivity
52
for 53 and 54 (Zhao et al., 2018). This formula generalizes ordinary connectivity, since 55 (Zhao et al., 2018). The same work also states that the formula fails at 56, and that determining 57 for 58 remains open (Zhao et al., 2018).
Alternating group graphs and split-stars provide additional exact component-fragmentation thresholds. For 59,
60
and for 61,
62
(Gu et al., 2018). These formulas belong to component connectivity rather than upper-bounded-order COC, but they serve the same reliability objective of quantifying resistance to fragmentation.
COC also appears outside reliability theory. In the cops and robber game, the paper on 2-component order connectivity defines 63-coc64 as the size of a smallest set 65 such that all the connected components of the induced graph on 66 are of size at most 67 (Jain et al., 2024). Specializing to 68, it proves the bound
69
for the cop number 70 (Jain et al., 2024). This result turns a component-order deletion parameter into a pursuit-evasion bound.
6. Directed, exact, and open directions
The directed analogue replaces connected components by strongly connected components. Directed Component Order Connectivity (DCOC) asks, for a digraph 71 and integers 72, whether there exists 73 of size 74 such that the largest strongly connected component in 75 has at most 76 vertices (Bang-Jensen et al., 2020). For 77, DCOC reduces to Directed Feedback Vertex Set (Bang-Jensen et al., 2020). On general digraphs, parameter 78 admits an 79-time algorithm, improving the previous 80 bound (Bang-Jensen et al., 2020). On semicomplete digraphs, DCOC parameterized by 81 can be solved in time 82, and there is no algorithm of time 83 unless the Exponential Time Hypothesis fails; the same paper also gives matching lower bounds for parameter 84 (Bang-Jensen et al., 2020).
Exact-size constraints form another frontier. 85-Exact Component Order Connectivity asks whether every connected component in 86 can be forced to have exactly 87 vertices (Liu et al., 19 May 2026). Its kernelization via ECOC crown decompositions generalizes both the classical Vertex Cover crown decomposition and the induced-matching case, and the paper identifies the running-time dependence on 88 as a limitation: obtaining an 89-vertex kernel using time also polynomial in 90 is left open (Liu et al., 19 May 2026). The same paper also identifies establishing non-trivial lower bounds on kernels for this exact variant as an open topic (Liu et al., 19 May 2026).
More broadly, current open directions arise at the interface between component order, component count, and application-specific constraints. For folded hypercubes, determining high-91 component connectivity beyond the range 92 remains open (Zhao et al., 2018). For cops and robber, a natural next step is to bound the cop number by 93-coc for a constant 94, possibly with a coefficient better than 95 (Jain et al., 2024). The spectral literature suggests further extensions to signless Laplacian, Laplacian, directed analogues, and edge-based versions of component-order-aware connectivity, but the decisive structural fact already visible is that many extremal problems continue to produce join-of-cliques architectures under COC-type constraints (Ding et al., 2024, Zhang et al., 26 Sep 2025).
Taken together, these developments show that Component Order Connectivity is not a single invariant but a mature cluster of deletion parameters and decision problems. Its core question—how many failures are needed before all surviving components become small, or before multiple components of controlled order must appear—links parameterized complexity, crown-based kernelization, degree-sequence extremal theory, spectral graph theory, network reliability, and algorithmic graph decomposition.