The execution of Ford Fulkerson algorithm for the given graph is as follows:

All the set of vertices from reachable to non-reachable vertex are called minimum cut.
Minimum cut on the graph:

The Capacity of given graph = 3 + 2 +1.5 + 1.5 + 1.4 + 2 + 1.2 = 12.6
6. Show the trace of execution of the algorithm of Ford and Fulkerson on the following...
5. Show the trace of execution of Dijkstra's algorithm for finding the shortest distance from A to Z in the following graph. Show how the program variables evolve through each iteration of the algorithm. Identify a shortest path on the graph. 1 B E 1 11 1.5 12 9 2.1 9 7 A с F Z 0.8 1 1 4 1.5 7 1.2 D G
We will look at how the Ford-Fulkerson Algorithm operates on the following network.Each edge is annotated with the current flow (initially zero) and the edge's capacity. In general, a flow of x along an edge with capacity y is shown as x / y.(a) Show the residual graph that will be created from this network with the given (empty) flow. In drawing a residual graph, to show a forward edge with capacity x and a backward edge with capacity y,...
6. (6 points) Trace the execution of Kruskal's algorithm to find the Minimum Spanning Tree of the graph shown below. 5 10
3. In this problem, you will show the execution of the minimum spanning tree algorithms that you studied in class on the following graph: START 10 40 5 20 35 15 6 30 62 12 (a) (5 points) Trace the execution of Prim's algorithm to find the minimum spanning tree for this graph. At each step, you should show the vertex and the edge added to the tree and the resulting values of D after the relaxation operation. Use START...
Trace the execution of quicksort for the following data set. You need to show all recursive execution 62 53 65 32 24 86 44 95 98 23 34 88 41 48 99 88 51 22 first pivot is 62
4) Consider the network flow graph below, where each arc is labeled with the maximum capacity of that link in the flow network. A 25C 15 - 10,- -* YD 15 35 20 40 10 X 2 (a) Use the Ford-Fulkerson Algorithm to determine the maximum total flow from source to sink in this network. Start with the path s B DA Ct and list (in order) the remaining paths added and the total flow after each path is added....
Q2. Show the execution trace of DFS on the following directed graph. You must show discovery time v.d, finish time v.f, and the v.color for each node as the algorithm progresses. Indicate all tree edges, back edges, forward edges, and cross edges when the final DFS forest is constructed. Assume that the edges going out from a vertex are processed in alphabetical order and that each adjacency list is ordered alphabetically.
Show the execution of the Edmonds-Karp algorithm on the flow network of Figure 26.1(a). A flow network G = (V, E) for the Lucky Puck Company's trucking problem. The Vancouver factory is the source s, and the Winnipeg warehouse is the sink t. The company ships pucks through intermediate cities, but only c(u, v) crates per day can go from city u to city v. Each edge is labeled with its capacity. (b) A flow f in G with value...
Show the execution of the selection sort algorithm on the following array. Hint: The yellow or shaded squares should be the remaining unsorted values. Pass # 0 1 2 3 4 5 6 7 0 16 11 21 32 41 20 3 9 1 2 3 4 5 6 7 Show the execution of the insertion sort algorithm on the following array. Hint: The yellow or shaded squares should be the remaining unsorted values. Pass # 0 1 2 3...
For the following questions, use the graph (starting node: S) below: 14. Show DFS traversal. 15. Show BFS traversal. 16. Show the result of a topological sorting of the graph 17. Dijikstra's single source shortest paths for all nodes 18. Show a tabular form soultion of following 0/1 knapsack problem. Value {5,7, 3, 10, 12, 4, 10} Weight {2,3,1,5, 6, 2,4} Total Weight: 12 19. Show a solution to Fractional knapsack problem with the same weight, value, and total weight...