Chapter 4: Q6E (page 133)
Question: Prove that for the array prev computed by Dijkstra's algorithm, the edges form a tree.
Short Answer
All the edges form a tree follows this condition if the nodes are connected so there is no cycle.
Chapter 4: Q6E (page 133)
Question: Prove that for the array prev computed by Dijkstra's algorithm, the edges form a tree.
All the edges form a tree follows this condition if the nodes are connected so there is no cycle.
All the tools & learning materials you need for study success - in one app.
Get started for freeSection 4.5.2 describes a way of storing a complete binary tree of n nodes in an array indexed by 1, 2, K, n .
(a) Consider the node at position j of the array. Show that its parent is at position and its children are at 2 jand 2 j + 1 (if these numbers are ).
(b) What the corresponding indices when a complete d-ary tree is stored in an array?
Figure 4.16 shows pseudocode for a binary heap, modeled on an exposition by R.E. Tarjan. The heap is stored as an array , which is assumed to support two constant-time operations:
The latter can always be achieved by maintaining the values of as an auxiliary array.
(c) Show that themakeheapprocedure takesO(n) time when called on a set of elements. What is the worst-case input? (Hint:Start by showing that the running time is at most ).
(d) What needs to be changed to adapt this pseudocode to d-ary heaps?
You are given a directed graph with (possibly negative) weighted edges, in which the shortest path between any two vertices is guaranteed to have at most edges. Give an algorithm that finds the shortest path between two vertices u and v in time.
Generalized shortest-paths problem.In Internet routing, there are delays on lines but also, more significantly, delays at routers. This motivates a generalized shortest-paths problem.
Suppose that in addition to having edge lengths ,a graph also has vertex costs . Now define the cost of a path to be the sum of its edge lengths, plusthe costs ofall vertices on the path (including the endpoints). Give an efficient algorithm for the followingproblem.
Input:A directed graph positive edge lengths and positive vertex costs ; a starting vertex .
Output:An array such that for every vertex , is the least cost of any path from s to u (i.e., the cost of the cheapest path), under the defnition above.
Notice that .
Shortest paths are not always unique: sometimes there are two or more different paths with the minimum possible length. Show how to solve the following problem in time.
Input:An undirected graph ;edge lengths ; starting vertex .
Output:A Boolean array for each node u , the entry should be if and only if there is a unique shortest path s to u (Note:)
Give an algorithm that takes as input a directed graph with positive edge lengths, and returns the length of the shortest cycle in the graph (if the graph is acyclic, it should say so). Your algorithm should take time at most .
What do you think about this solution?
We value your feedback to improve our textbook solutions.