Chapter 33 Flashcards

1
Q

What is strong component

A

A directed graph is strongly connected if there is a path between all pairs of vertices. A strongly connected component (SCC) of a directed graph is a maximal strongly connected sub graph.

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

What is component DAG

A

A DAG is converted into major components that are connected to each other. e.g. city areas connected to each other for police check posts.

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

What is mutual reachability

A

Ability of vertices to connect each other

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

Does mutual reachability a equivalence relation

A

Yes

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

What is component digraph

A

Vertices converted into strong components. Then the resulting digraph is component digraph.

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

Does component digraph must be acyclic

A

Yes

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

Can we reverse topological order

A

Yes

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

What about minimum spanning trees

A

A minimum spanning tree (MST) is a subset of the edges of a connected, edge-weighted undirected graph that connects all the vertices together, without any cycles and with the minimum possible total edge weight.
Their result is always accurate. They used in communication networks

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

Which trees we need to find in widgets

A

Minimum spanning trees

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

What is spanning tree

A

A spanning tree is a subset of Graph G, which has all the vertices covered with minimum possible number of edges. By this definition, we can draw a conclusion that every connected and undirected Graph G has at least one spanning tree.

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

Does electric circuit use minimum spanning tree algorithm to wire it

A

Yes

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

What is free tree

A

The tree which has root not clearly defined. We can choose any node to make a tree but the shape of tree should be remain a tree.

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

Can there be multiple spanning trees in a graph

A

Yes

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

What are 2 types of greedy algorithm

A

1- Kruskal

2- Prim

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

What is greedy algorithm

A

A greedy algorithm is the one that builds a solution by repeatedly selecting the cheapest among all options at each stage.

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