Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 3 out of 24 pages
Exam (elaborations)

Module 4- Advanced Data Structures - Graph Algorithms & FFT Notes

Document preview thumbnail
Preview 3 out of 24 pages

Module 4- Advanced Data Structures - Graph Algorithms & FFT Notes

Content preview

lOMoARcPSD|44613495




Advance Data Structures Module 4 Notes


Data Structure and Algorithms for Problem solving (Visvesvaraya Technological
University)




Scan to open on Studocu




Studocu is not sponsored or endorsed by any college or university
Downloaded by Samuel Wachira ndiang'ui ()

, lOMoARcPSD|44613495




Data Structures & Algorithms for Problem Solving
Module – 4




Graph Algorithms and Polynomials with FFT

1. Graph Algorithms

Bellman-Ford Algorithm

Definition: The Bellman-Ford algorithm is a graph algorithm that computes the shortest
paths from a single source vertex to all other vertices in a weighted graph. It can handle
graphs with negative weight edges.

Algorithm Steps:

1. Initialize the distance to the source vertex as 0 and all other vertices as infinity.

2. For each vertex, relax all edges. This means for each edge ( (u, v) ) with weight ( w ), if
( distance[u] + w < distance[v] ), update ( distance[v] ).

3. Repeat the relaxation process for ( V-1 ) times, where ( V ) is the number of vertices.

4. Check for negative weight cycles by performing one more relaxation. If any distance
can still be updated, a negative cycle exists.

Complexity:

 Time Complexity: (O(V \cdot E)), where (V) is the number of vertices and (E) is the
number of edges.

 Space Complexity: (O(V)) for storing distances.



Single Source Shortest Paths in a DAG

Definition: In a Directed Acyclic Graph (DAG), the shortest paths from a single source can be
found using topological sorting.

Algorithm Steps:

1. Perform a topological sort of the DAG.




Downloaded by Samuel Wachira ndiang'ui ()

, lOMoARcPSD|44613495




2. Initialize the distance to the source vertex as 0 and all other vertices as infinity.

3. Process each vertex in topological order:

 For each outgoing edge ( (u, v) ) with weight ( w ), if ( distance[u] + w <
distance[v] ), update ( distance[v] ).

Complexity:

 Time Complexity: (O(V + E)) due to topological sorting and relaxation.

 Space Complexity: (O(V)) for storing distances.



Johnson’s Algorithm for Sparse Graphs

Definition: Johnson’s algorithm finds the shortest paths between all pairs of vertices in a
sparse graph, even with negative weights, but without negative cycles.

Algorithm Steps:

1. Add a new vertex ( q ) connected to all other vertices with zero-weight edges.

2. Use the Bellman-Ford algorithm to find the shortest paths from ( q ) to all other
vertices. If a negative cycle is detected, terminate.

3. Reweight the edges using the formula: ( w'(u, v) = w(u, v) + h[u] - h[v] ), where ( h ) is
the distance from ( q ).

4. Use Dijkstra’s algorithm for each vertex to find the shortest paths in the reweighted
graph.

Complexity:

 Time Complexity: (O(V^2 \log V + V E)) for sparse graphs.

 Space Complexity: (O(V + E)).



Flow Networks and Ford-Fulkerson Method

Definition: The Ford-Fulkerson method computes the maximum flow in a flow network using
augmenting paths.

Algorithm Steps:

1. Initialize the flow in all edges to 0.

2. While there exists an augmenting path from the source to the sink, increase the flow
along this path.




Downloaded by Samuel Wachira ndiang'ui ()

Document information

Study
Uploaded on
February 25, 2026
Number of pages
24
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers
$21.99

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
Writewise
3.4
(5)
Sold
53
Followers
6
Items
1827
Last sold
3 months ago



Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions