Display new weighted graph - trace kruskals algorithm on


Question 1. Show a recursion tree for T(n) = T(n-1) + T(n-2) + 1. Provide upper and lower asymptotic bounds on T(n).

Question 2. Consider the weighted graph G in Figure 23.1. Wherever there is a weight w(u,v), replace that weight with 20-w(u,v).

(a) Display this new weighted graph.

820_Figure.png

(b) Trace Kruskal's Algorithm on the graph. That is, show the order in which edges are added to the minimum-spanning tree.

(c) Trace Prim's Algorithm on the graph for two different roots, a and e. That is, show the order in which edges are added to the minimum-spanning tree.

Question 3. Trace the Bellman-Ford Algorithm on the graph in Figure 24.4 using z as the start vertex.

Question 4. Trace Dijkstra's Algorithm on the graph in Figure 24.6 using z as the start vertex.

Question 5. Suppose (u,v) is the minimum-weight edge incident on u in a graph G, where G is undirected, connected, and weighted. Assume all weights are distinct. Show that (u,v) belongs to some minimum spanning tree of G. Hint: If T is a spanning tree without (u,v), show to construct a spanning tree T0 that includes (u,v) and has a lower total weight

2428_Figure1.jpg

Question 6. Using the the Bellman-Ford algorithm as a subroutine, write an algorithm in pseudocode to determine if a directed graph G contains a cycle. What is the running time of your algorithm

Question 7. In pseudocode, write an algorithm to count all the simple paths in a graph, including paths of length 0. Don't worry about creating an efficient algorithm. Hint: Write it recursively with one parameter equal to the vertices not in the current path. What is the running time of your algorithm?

Request for Solution File

Ask an Expert for Answer!!
Data Structure & Algorithms: Display new weighted graph - trace kruskals algorithm on
Reference No:- TGS01610391

Expected delivery within 24 Hours