Strongly Connected Components Flashcards

(10 cards)

1
Q

What is a Strongly Connected Component (SCC)?

A

A subset of vertices in a directed graph where every vertex is reachable from every other vertex in the subset.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the condition for a subset of vertices to be an SCC?

A

For every pair of vertices (u, v), there is a path from u to v and from v to u, and all paths lie within the subset.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a Maximal Strongly Connected Component (MSCC)?

A

An SCC that cannot be extended by adding any other vertex from the graph without losing the strong connectivity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How can you tell if an SCC is maximal?

A

If for every vertex not in the SCC, adding it results in a set that is not an SCC.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the difference between an SCC and an MSCC?

A

An SCC may be extendable, while an MSCC is the largest possible SCC that cannot be extended.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Can a single vertex be an SCC?

A

Yes, if there are no outgoing or incoming edges, or it forms a self-loop.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the SCC decomposition of a graph?

A

A partitioning of the graph into its maximal strongly connected components.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Why are SCCs important in graph algorithms?

A

They serve as a starting point for solving many graph problems and analyzing graph structure.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Is the entire graph always a strongly connected component?

A

No, only if there is a path between every pair of nodes in both directions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Do all vertices belong to an SCC?

A

Yes, every vertex belongs to exactly one maximal SCC.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly