SlideShare a Scribd company logo
1
Chapter 9: Graphs
(Topological Sort & Shortest Path
Algorithms)
Text: Read Weiss, §9.1 – 9.3
2
Definitions - I
• A graph G=(V, E) consists of a set of vertices,
V, and a set of edges, E.
• Each edge is a pair (v, w), where v, w є V.
• If the pair is ordered then G is directed
(digraph).
• Vertex w is adjacent to v iff (v, w) є E.
• In an undirected graph with edge (v, w), w is
adjacent to v and v is adjacent to w.
• Sometimes an edge has a third component,
weight or cost.
3
Definitions - II
• A path in a graph is w1, w2,...,wN such that
(wi, wi+1) є E for 1≤i<N. The length of such
a path is the number of edges on the path.
If a path from a vertex to itself contains no
edges, then the path length is zero. If G
contains an edge (v, v), then the path v, v
is called a loop.
• A simple path is a path such that all
vertices are distinct, except that the first
and the last could be the same.
4
Definitions - III
• A cycle in a directed graph is a path of length at
least 1 such that w1=wN. This cycle is simple if the
path is simple. For undirected graphs, the edges are
required to be distinct (Why?).
• A directed graph is acyclic if it has no cycles (DAG).
• An undirected graph is connected if there is a path
from every vertex to every other vertex. A directed
graph with this property is called strongly
connected. If directed graph is not, but underlying
undirected graph is, it is weakly connected. A
complete graph is a graph in which there is an
edge between every pair of vertices.
5
Representation of Graphs - I
• One simple way is to use a two-
dimensional array (adjacency matrix
representation). If vertices are numbered
starting at 1, A[u][v]=true if (u, v) є E.
Space requirement is Θ(|V|2).
• If the graph is not dense (sparse),
adjacency lists may be used. The space
requirement is O(|E|+|V|).
6
Representation of Graphs - II
7
Topological Sort - I
•A topological sort is an ordering of vertices
in a DAG, such that if there is path from vi to
vj, then vj appears after vi in the ordering.
•A simple algorithm to find a topological
ordering is first to find any vertex with no
incoming edges. We can then print this vertex,
and remove it, along with its edges. Then apply
the same strategy to the rest of the graph. To
formalize this, define the indegree of a vertex
v as the number of edges (u, v).
8
Topological Sort – Initial Attempt
• running time of
the algorithm is
O(|V|2).
9
• We can remove the inefficiency by
keeping all the unassigned vertices
of indegree 0 in a special data
structure (queue or stack). When a
new vertex with degree zero is
needed, it is returned by removing
one from the queue, and when the
indegrees of adjacent vertices are
decremented, they are inserted into
the queue if the indegree falls to
zero. The running time is O(|E|+|V|)
Topological Sort – A Better Algorithm
10
Shortest-Path Algorithms
• The input is a weighted graph: associated
with each edge (vi, vj) is a cost ci,j. The
cost of a path v1v2...vN is ∑ci,i+1 for i in
[1..N-1]. This is weighted path length, the
unweighted path length on the other
hand is merely the number of edges on
the path, namely, N-1.
• Single-source Shortest-Path Problem:
Given as input a weighted graph G=(V, E),
and a distinguished vertex, s, find the
shortest weighted path from s to every
other vertex in G.
Shortest-Path Algorithms (cont.)
11
• In the graph below, the shortest path from v1 to v6 has a cost
of 6 and the path itself is v1v4v7v6. The shortest unweighted
path has 2 edges.
Negative Cost Cycles
12
• In the graph shown, we have a negative cost. The path from
v5 to v4 has cost 1, but a shorter path exists by following the
loop v5v4v2v5v4 which has cost -5. This path is still not the
shortest, because we could stay in the loop arbitrarily long.
Shortest Path Length: Problems
We will examine 4 algorithms to solve four versions of
the problem
1.Unweighted shortest path O(|E|+|V|)
2.Weighted shortest path without negative edges
O(|E|log|V|) using queues
3.Weighted shortest path with negative edges
O(|E| . |V|)
4.Weighted shortest path of acyclic graphs linear
time 13
Unweighted Shortest Paths
• Using some vertex, s, which is an input
parameter, find the shortest path from s to all
other vertices in an unweighted graph. Assume
s=v3.
14
Unweighted Shortest Paths
• Algorithm: find vertices that are at
distance 1, 2, ... N-1 by processing
vertices in layers (breadth-first search)
15
Unweighted Shortest Paths
16
Unweighted Shortest Paths
• Complexity O(|V|2)
17
Unweighted Shortest Paths - Improvement
• At any point in time there
are only two types of
unknown vertices that
have dv≠∞. Some have
dv = currDist and the rest
have dv = currDist +1.
• We can make use of a
queue data structure.
• O(|E|+|V|)
18
Weighted Shortest Path
Dijkstra’s Algorithm
• With weighted shortest path,distance dv is
tentative. It turns out to be the shortest path
length from s to v using only known vertices as
intermediates.
• Greedy algorithm: proceeds in stages doing the
best at each stage. Dijkstra’s algorithm selects a
vertex v with smallest dv among all unknown
vertices and declares it known. Remainder of the
stage consists of updating the values dw for all
edges (v, w).
19
Dijkstra’s Algorithm - Example
20
►
►
►
Dijkstra’s Algorithm - Example
• A proof by contradiction will show that this
algorithm always works as long as no
edge has a negative cost.
21
►
►
►
►
Dijkstra’s Algorithm - Pseudocode
• If the vertices are
sequentially scanned to
find minimum dv, each
phase will take O(|V|) to
find the minimum, thus
O(|V|2) over the course
of the algorithm.
• The time for updates is
constant and at most
one update per edge for
a total of O(|E|).
• Therefore the total time
spent is O(|V|2+|E|).
• If the graph is dense,
OPTIMAL.
22
Dijkstra’s Algorithm-What if the
graph is sparse?
• If the graph is sparse |E|=θ(|V|), algorithm is too
slow. The distances of vertices need to be kept
in a priority queue.
• Selection of vertex with minimum distance via
deleteMin, and updates via decreaseKey
operation. Hence; O(|E|log|V|+|V|log|V|)
• find operations are not supported, so you need
to be able to maintain locations of di in the heap
and update them as they change.
• Alternative: insert w and dw with every update.
23
Graphs with negative edge
costs
• Dijkstra’s algorithm does not work with
negative edge costs. Once a vertex u is
known, it is possible that from some other
unknown vertex v, there is a path back to
u that is very negative.
• Algorithm: A combination of weighted and
unweighted algorithms. Forget about the
concept of known vertices.
24
Graphs with negative edge costs - I
• O(|E|*|V|). Each vertex
can dequeue at most
O(|V|) times. (Why?
Algorithm computes
shortest paths with at
most 0, 1, ..., |V|-1 edges
in this order). Hence, the
result!
• If negative cost cycles,
then each vertex should
be checked to have been
dequeued at most |V|
times.
25
Acyclic Graphs
• If the graph is known to be acyclic, the
order in which vertices are declared
known, can be set to be the topological
order.
• Running time = O(|V|+|E|)
• This selection rule works because when a
vertex is selected, its distance can no
longer be lowered, since by topological
ordering rule it has no incoming edges
emanating from unknown nodes.
26

More Related Content

PPTX
Graphs Algorithms
PDF
Graph applications chapter
PPT
Graphs in Data Structure
PDF
Graph in Data Structure
PPTX
Unit ix graph
PDF
PPTX
Unit 9 graph
PDF
18 Basic Graph Algorithms
Graphs Algorithms
Graph applications chapter
Graphs in Data Structure
Graph in Data Structure
Unit ix graph
Unit 9 graph
18 Basic Graph Algorithms

What's hot (20)

PDF
All pairs shortest path algorithm
PPTX
Adjacency list
PPTX
(floyd's algm)
PPTX
Shortest path problem
PPTX
Graphs in Data Structure
PPTX
Data Structures - Lecture 10 [Graphs]
PPTX
Graph Algorithms: Breadth-First Search (BFS)
PDF
Problem Solving with Algorithms and Data Structure - Graphs
PPT
2.5 graph dfs
PPT
Shortest path (Dijkistra's Algorithm) & Spanning Tree (Prim's Algorithm)
PPT
Unit26 shortest pathalgorithm
PPT
1535 graph algorithms
PPTX
Graphs data Structure
PDF
Topological Sort
PDF
Graph Data Structure
PPTX
Graph in data structure
PDF
Shortest Path Problem
PPTX
Data Structure Graph DMZ #DMZone
All pairs shortest path algorithm
Adjacency list
(floyd's algm)
Shortest path problem
Graphs in Data Structure
Data Structures - Lecture 10 [Graphs]
Graph Algorithms: Breadth-First Search (BFS)
Problem Solving with Algorithms and Data Structure - Graphs
2.5 graph dfs
Shortest path (Dijkistra's Algorithm) & Spanning Tree (Prim's Algorithm)
Unit26 shortest pathalgorithm
1535 graph algorithms
Graphs data Structure
Topological Sort
Graph Data Structure
Graph in data structure
Shortest Path Problem
Data Structure Graph DMZ #DMZone
Ad

Similar to 14 chapter9 graph_algorithmstopologicalsort_shortestpath (20)

PDF
Algorithms of graph
PPTX
12_Graph.pptx
PPTX
Introduction to graphs
PDF
Lecture 16 - Dijkstra's Algorithm.pdf
PPT
Shortest path
PPT
Overview of Graph Theory and Least-Cost Paths Chapter 14
PPTX
logic.pptx
PPT
22-graphs1-dfs-bfs.ppt data structures ppt
PPT
Inroduction_To_Algorithms_Lect14
PPTX
PPT
22-graphs1-dfs-bfs.ppt
PPT
Graphs
PPT
22-graphs1-dfs-bfs.ppt odiehehei7hoh97ho7bi6vi6go7gp
PDF
Lecture13
PPT
Directed Acyclic Graph
PPTX
Depth First Search and Breadth First Search
PPTX
UNIT III.pptx
PPTX
UNIT IV NON LINEAR DATA STRUCTURES - GRAPH.pptx
PPT
Algorithm Design and Complexity - Course 10
Algorithms of graph
12_Graph.pptx
Introduction to graphs
Lecture 16 - Dijkstra's Algorithm.pdf
Shortest path
Overview of Graph Theory and Least-Cost Paths Chapter 14
logic.pptx
22-graphs1-dfs-bfs.ppt data structures ppt
Inroduction_To_Algorithms_Lect14
22-graphs1-dfs-bfs.ppt
Graphs
22-graphs1-dfs-bfs.ppt odiehehei7hoh97ho7bi6vi6go7gp
Lecture13
Directed Acyclic Graph
Depth First Search and Breadth First Search
UNIT III.pptx
UNIT IV NON LINEAR DATA STRUCTURES - GRAPH.pptx
Algorithm Design and Complexity - Course 10
Ad

More from SSE_AndyLi (17)

PDF
Chapter 07 Digital Alrithmetic and Arithmetic Circuits
PDF
Chapter 06 Combinational Logic Functions
PDF
Chapter 5 introduction to VHDL
PDF
Chapter 03 Boolean Algebra and Combinational Logic
PDF
Chapter 02 Logic Functions and Gates
PDF
Chapter 01 Basic Principles of Digital Systems
PDF
15 chapter9 graph_algorithms_mst
PDF
10 chapter6 heaps_priority_queues
PDF
9 chapter4 trees_avl
PDF
8 chapter4 trees_bst
PDF
7 chapter4 trees_binary
PDF
6 chapter3 list_stackqueuepart3
PDF
5 chapter3 list_stackqueuepart2
PDF
4 chapter3 list_stackqueuepart1
PDF
3 chapter2 algorithm_analysispart2
PDF
2 chapter2 algorithm_analysispart1
PDF
1 chapter1 introduction
Chapter 07 Digital Alrithmetic and Arithmetic Circuits
Chapter 06 Combinational Logic Functions
Chapter 5 introduction to VHDL
Chapter 03 Boolean Algebra and Combinational Logic
Chapter 02 Logic Functions and Gates
Chapter 01 Basic Principles of Digital Systems
15 chapter9 graph_algorithms_mst
10 chapter6 heaps_priority_queues
9 chapter4 trees_avl
8 chapter4 trees_bst
7 chapter4 trees_binary
6 chapter3 list_stackqueuepart3
5 chapter3 list_stackqueuepart2
4 chapter3 list_stackqueuepart1
3 chapter2 algorithm_analysispart2
2 chapter2 algorithm_analysispart1
1 chapter1 introduction

Recently uploaded (20)

PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
System and Network Administraation Chapter 3
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PPTX
ai tools demonstartion for schools and inter college
PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
Introduction to Artificial Intelligence
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
How to Migrate SBCGlobal Email to Yahoo Easily
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Digital Strategies for Manufacturing Companies
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
medical staffing services at VALiNTRY
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Nekopoi APK 2025 free lastest update
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
System and Network Administraation Chapter 3
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
ai tools demonstartion for schools and inter college
Odoo POS Development Services by CandidRoot Solutions
Introduction to Artificial Intelligence
2025 Textile ERP Trends: SAP, Odoo & Oracle
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
How to Migrate SBCGlobal Email to Yahoo Easily
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Digital Strategies for Manufacturing Companies
Reimagine Home Health with the Power of Agentic AI​
Design an Analysis of Algorithms II-SECS-1021-03
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
medical staffing services at VALiNTRY
CHAPTER 2 - PM Management and IT Context
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Nekopoi APK 2025 free lastest update
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...

14 chapter9 graph_algorithmstopologicalsort_shortestpath

  • 1. 1 Chapter 9: Graphs (Topological Sort & Shortest Path Algorithms) Text: Read Weiss, §9.1 – 9.3
  • 2. 2 Definitions - I • A graph G=(V, E) consists of a set of vertices, V, and a set of edges, E. • Each edge is a pair (v, w), where v, w є V. • If the pair is ordered then G is directed (digraph). • Vertex w is adjacent to v iff (v, w) є E. • In an undirected graph with edge (v, w), w is adjacent to v and v is adjacent to w. • Sometimes an edge has a third component, weight or cost.
  • 3. 3 Definitions - II • A path in a graph is w1, w2,...,wN such that (wi, wi+1) є E for 1≤i<N. The length of such a path is the number of edges on the path. If a path from a vertex to itself contains no edges, then the path length is zero. If G contains an edge (v, v), then the path v, v is called a loop. • A simple path is a path such that all vertices are distinct, except that the first and the last could be the same.
  • 4. 4 Definitions - III • A cycle in a directed graph is a path of length at least 1 such that w1=wN. This cycle is simple if the path is simple. For undirected graphs, the edges are required to be distinct (Why?). • A directed graph is acyclic if it has no cycles (DAG). • An undirected graph is connected if there is a path from every vertex to every other vertex. A directed graph with this property is called strongly connected. If directed graph is not, but underlying undirected graph is, it is weakly connected. A complete graph is a graph in which there is an edge between every pair of vertices.
  • 5. 5 Representation of Graphs - I • One simple way is to use a two- dimensional array (adjacency matrix representation). If vertices are numbered starting at 1, A[u][v]=true if (u, v) є E. Space requirement is Θ(|V|2). • If the graph is not dense (sparse), adjacency lists may be used. The space requirement is O(|E|+|V|).
  • 7. 7 Topological Sort - I •A topological sort is an ordering of vertices in a DAG, such that if there is path from vi to vj, then vj appears after vi in the ordering. •A simple algorithm to find a topological ordering is first to find any vertex with no incoming edges. We can then print this vertex, and remove it, along with its edges. Then apply the same strategy to the rest of the graph. To formalize this, define the indegree of a vertex v as the number of edges (u, v).
  • 8. 8 Topological Sort – Initial Attempt • running time of the algorithm is O(|V|2).
  • 9. 9 • We can remove the inefficiency by keeping all the unassigned vertices of indegree 0 in a special data structure (queue or stack). When a new vertex with degree zero is needed, it is returned by removing one from the queue, and when the indegrees of adjacent vertices are decremented, they are inserted into the queue if the indegree falls to zero. The running time is O(|E|+|V|) Topological Sort – A Better Algorithm
  • 10. 10 Shortest-Path Algorithms • The input is a weighted graph: associated with each edge (vi, vj) is a cost ci,j. The cost of a path v1v2...vN is ∑ci,i+1 for i in [1..N-1]. This is weighted path length, the unweighted path length on the other hand is merely the number of edges on the path, namely, N-1. • Single-source Shortest-Path Problem: Given as input a weighted graph G=(V, E), and a distinguished vertex, s, find the shortest weighted path from s to every other vertex in G.
  • 11. Shortest-Path Algorithms (cont.) 11 • In the graph below, the shortest path from v1 to v6 has a cost of 6 and the path itself is v1v4v7v6. The shortest unweighted path has 2 edges.
  • 12. Negative Cost Cycles 12 • In the graph shown, we have a negative cost. The path from v5 to v4 has cost 1, but a shorter path exists by following the loop v5v4v2v5v4 which has cost -5. This path is still not the shortest, because we could stay in the loop arbitrarily long.
  • 13. Shortest Path Length: Problems We will examine 4 algorithms to solve four versions of the problem 1.Unweighted shortest path O(|E|+|V|) 2.Weighted shortest path without negative edges O(|E|log|V|) using queues 3.Weighted shortest path with negative edges O(|E| . |V|) 4.Weighted shortest path of acyclic graphs linear time 13
  • 14. Unweighted Shortest Paths • Using some vertex, s, which is an input parameter, find the shortest path from s to all other vertices in an unweighted graph. Assume s=v3. 14
  • 15. Unweighted Shortest Paths • Algorithm: find vertices that are at distance 1, 2, ... N-1 by processing vertices in layers (breadth-first search) 15
  • 17. Unweighted Shortest Paths • Complexity O(|V|2) 17
  • 18. Unweighted Shortest Paths - Improvement • At any point in time there are only two types of unknown vertices that have dv≠∞. Some have dv = currDist and the rest have dv = currDist +1. • We can make use of a queue data structure. • O(|E|+|V|) 18
  • 19. Weighted Shortest Path Dijkstra’s Algorithm • With weighted shortest path,distance dv is tentative. It turns out to be the shortest path length from s to v using only known vertices as intermediates. • Greedy algorithm: proceeds in stages doing the best at each stage. Dijkstra’s algorithm selects a vertex v with smallest dv among all unknown vertices and declares it known. Remainder of the stage consists of updating the values dw for all edges (v, w). 19
  • 20. Dijkstra’s Algorithm - Example 20 ► ► ►
  • 21. Dijkstra’s Algorithm - Example • A proof by contradiction will show that this algorithm always works as long as no edge has a negative cost. 21 ► ► ► ►
  • 22. Dijkstra’s Algorithm - Pseudocode • If the vertices are sequentially scanned to find minimum dv, each phase will take O(|V|) to find the minimum, thus O(|V|2) over the course of the algorithm. • The time for updates is constant and at most one update per edge for a total of O(|E|). • Therefore the total time spent is O(|V|2+|E|). • If the graph is dense, OPTIMAL. 22
  • 23. Dijkstra’s Algorithm-What if the graph is sparse? • If the graph is sparse |E|=θ(|V|), algorithm is too slow. The distances of vertices need to be kept in a priority queue. • Selection of vertex with minimum distance via deleteMin, and updates via decreaseKey operation. Hence; O(|E|log|V|+|V|log|V|) • find operations are not supported, so you need to be able to maintain locations of di in the heap and update them as they change. • Alternative: insert w and dw with every update. 23
  • 24. Graphs with negative edge costs • Dijkstra’s algorithm does not work with negative edge costs. Once a vertex u is known, it is possible that from some other unknown vertex v, there is a path back to u that is very negative. • Algorithm: A combination of weighted and unweighted algorithms. Forget about the concept of known vertices. 24
  • 25. Graphs with negative edge costs - I • O(|E|*|V|). Each vertex can dequeue at most O(|V|) times. (Why? Algorithm computes shortest paths with at most 0, 1, ..., |V|-1 edges in this order). Hence, the result! • If negative cost cycles, then each vertex should be checked to have been dequeued at most |V| times. 25
  • 26. Acyclic Graphs • If the graph is known to be acyclic, the order in which vertices are declared known, can be set to be the topological order. • Running time = O(|V|+|E|) • This selection rule works because when a vertex is selected, its distance can no longer be lowered, since by topological ordering rule it has no incoming edges emanating from unknown nodes. 26