<< Prev Showing: 116-120 of 353 Next >>
· 91-95 · 96-100 · 101-105 · 106-110 · 111-115 · 116-120 · 121-125 · 126-130 · 131-135 · 136-140 · 141-145 ·The solution below got cut off. Please let me know what is the total solution: problem: The number of strongly connected components in a graph G is k. By how much can this number change if we add a new edge? solution: If we add an edge to a biconnected graph with k strongly connected components, then there are three scenarios: the endpoints of the edge lie in different strongly connected component and there is no path between the two in the original graph, the endpoints of the edge lie in different strongly connected component and there is a path between the two in the original graph, and the endpoints of the edge lie in the same strongly connected component. In the ... click for more
Subject:
Computer Science
Topic:
Data Structures and Algorithms
Posting ID:
74502
OTA ID:
102804
(See attached file for full problem description)
Subject:
Computer Science
Topic:
Data Structures and Algorithms
Posting ID:
74531
OTA ID:
102804
The edge connectivity of an undirected graph is the minimum number k of edges that must be removed to disconnect the graph. For example, the edge connectivity of a tree is 1, and the edge connectivity of a cyclic chain of vertices is 2. Show how the edge connectivity of an undirected graph G = (V, E) can be determined by running a maximum-flow algorithm on at most |V| flow networks, each having O(V) vertices and O(E) edges.
Subject:
Computer Science
Topic:
Data Structures and Algorithms
Posting ID:
74535
OTA ID:
102804
Maximum cardinality matching algorithm
A tree is a connected undirected graph with no cycles. Design a linear time algorithm to find a maximum cardinality matching in a tree.
Subject:
Computer Science
Topic:
Data Structures and Algorithms
Posting ID:
77341
OTA ID:
102804
Compare the two non-sequential file structure models
Compare the two non-sequential file structure models: the random (hashed) file and the index file. What advantages does the first one have over the second and what advantages does the second have over the first? What would be your criteria for choosing one over the other for different applications?
Subject:
Computer Science
Topic:
Data Structures and Algorithms
Posting ID:
78731
OTA ID:
105277
<< Prev Showing: 116-120 of 353 Next >>
· 1-5 · 6-10 · 11-15 · 16-20 · 21-25 · 26-30 · 31-35 · 36-40 · 41-45 · 46-50 · 51-55 · 56-60 · 61-65 · 66-70 · 71-75 · 76-80 · 81-85 · 86-90 · 91-95 · 96-100 · 101-105 · 106-110 · 111-115 · 116-120 · 121-125 · 126-130 · 131-135 · 136-140 · 141-145 · 146-150 · 151-155 · 156-160 · 161-165 · 166-170 · 171-175 · 176-180 · 181-185 · 186-190 · 191-195 · 196-200 · 201-205 · 206-210 · 211-215 · 216-220 · 221-225 · 226-230 · 231-235 · 236-240 · 241-245 · 246-250 · 251-255 · 256-260 · 261-265 · 266-270 · 271-275 · 276-280 · 281-285 · 286-290 · 291-295 · 296-300 · 301-305 · 306-310 · 311-315 · 316-320 · 321-325 · 326-330 · 331-335 · 336-340 · 341-345 · 346-350 · 351-353 ·Page generated in 0.103 seconds