ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Graph Traversal
Depth-First Search
• Using Stack
Breadth-First Search
• Using Queue
Overview
• Goal
– To systematically visit the nodes of a graph
• A tree is a directed, acyclic, graph (DAG)
• If the graph is a tree,
– DFS is exhibited by preorder, postorder, and
(for binary trees) inorder traversals
– BFS is exhibited by level-order traversal
Depth-First Search
// recursive, preorder, depth-first search
void dfs (Node v) {
if (v == null)
return;
if (v not yet visited)
visit&mark(v); // visit node before adjacent nodes
for (each w adjacent to v)
if (w has not yet been visited)
dfs(w);
} // dfs
Example
0
7
1
5
4
3
2
6
Policy: Visit adjacent nodes in increasing index order
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1 0 3 2 7 6 4
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5
Push 5
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5
Pop/Visit/Mark 5
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5
1
2
Push 2, Push 1
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1
2
Pop/Visit/Mark 1
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1
0
4
2
Push 4, Push 0
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1 0
4
2
Pop/Visit/Mark 0
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1 0
3
7
4
2
Push 7, Push 3
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1 0 3
7
4
2
Pop/Visit/Mark 3
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1 0 3
7
4
2
2 is already in stack
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1 0 3 7
7
4
2
Pop/Mark/Visit 7
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1 0 3 7
6
4
2
Push 6
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1 0 3 7 6
4
2
Pop/Mark/Visit 6
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1 0 3 7 6 4
2
Pop/Mark/Visit 4
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1 0 3 7 6 4 2
Pop/Mark/Visit 2
DFS: Start with Node 5
0
7
1
5
4
3
2
6
5 1 0 3 7 6 4 2
Done
Breadth-first Search
• Ripples in a pond
• Visit designated node
• Then visited unvisited nodes a distance i
away, where i = 1, 2, 3, etc.
• For nodes the same distance away, visit
nodes in systematic manner (eg. increasing
index order)
Breadth-First Search
// non-recursive, preorder, breadth-first search
void bfs (Node v) {
if (v == null)
return;
enqueue(v);
while (queue is not empty) {
dequeue(v);
if (v has not yet been visited)
mark&visit(v);
for (each w adjacent to v)
if (w has not yet been visited && has not been queued)
enqueue(w);
} // while
} // bfs
BFS: Start with Node 5
7
1
5
4
3
2
6
0
BFS: Start with Node 5
7
1
5
4
3
2
6
0
5
BFS: Node one-away
7
1
5
4
3
2
6
5
0
5 1 2
BFS: Visit 1 and add its adjacent
nodes
7
1
5
4
3
2
6
5 1
0
5 1 2 0 4
BFS: Visit 2 and add its adjacent
nodes
7
1
5
4
3
2
6
5 1 2
0
5 1 2 0 4
BFS: Visit 0 and add its adjacent
nodes
7
1
5
4
3
2
6
5 1 2 0
0
5 1 2 0 4 3 7
BFS: Visit 4 and add its adjacent
nodes
7
1
5
4
3
2
6
5 1 2 0 4
0
5 1 2 0 4 3 7
BFS: Visit 3 and add its adjacent
nodes
7
1
5
4
3
2
6
5 1 2 0 4 3
0
5 1 2 0 4 3 7
BFS: Visit 7 and add its adjacent
nodes
7
1
5
4
3
2
6
5 1 2 0 4 3 7
0
5 1 2 0 4 3 7 6
BFS: Visit 6 and add its adjacent
nodes
7
1
5
4
3
2
6
5 1 2 0 4 3 7 6
0
5 1 2 0 4 3 7 6
BFS Traversal Result
7
1
5
4
3
2
6
5 1 2 0 4 3 7 6
0
Applications of BFS
• Computing Distances: Given a source vertex x, compute the distance
of all vertices from x.
• Checking for cycles in a graph: Given an undirected graph G, report
whether there exists a cycle in the graph or not. (Note: won’t work for
directed graphs)
• Checking for bipartite graph: Given a graph, check whether it is
bipartite or not? A graph is said to be bipartite if there is a partition of
the vertex set V into two sets V1 and V2 such that if two vertices are
adjacent, either both are in V1 or both are in V2.
• Reachability: Given a graph G and vertices x and y, determine if there
exists a path from x to y.
Applications of DFS
• Computing Strongly Connected Components: A directed graph is
strongly connected if there exists a path from every vertex to every
other vertex. Trivial Algo: Perform DFS n times. Efficient Algo:
Single DFS.
• Checking for Biconnected Graph: A graph is biconnected if removal of
any vertex does not affect connectivity of the other vertices. Used to
test if network is robust to failure of certain nodes. A single DFS
traversal algorithm.
• Topological Ordering: Topological sorting for Directed Acyclic Graph
(DAG) is a linear ordering of vertices such that for every directed edge
(x, y), vertex x comes before y in the ordering

More Related Content

What's hot (20)

Graph traversals in Data Structures
Graph traversals in Data StructuresGraph traversals in Data Structures
Graph traversals in Data Structures
Anandhasilambarasan D
Ìý
2.5 bfs & dfs 02
2.5 bfs & dfs 022.5 bfs & dfs 02
2.5 bfs & dfs 02
Krish_ver2
Ìý
DFS & BFS Graph
DFS & BFS GraphDFS & BFS Graph
DFS & BFS Graph
Mahfuzul Yamin
Ìý
Depth-First Search
Depth-First SearchDepth-First Search
Depth-First Search
Dakshitha Dissanayaka
Ìý
Binary tree
Binary treeBinary tree
Binary tree
Rajendran
Ìý
Bfs and dfs in data structure
Bfs and dfs in  data structure Bfs and dfs in  data structure
Bfs and dfs in data structure
Ankit Kumar Singh
Ìý
Binary Tree Traversal
Binary Tree TraversalBinary Tree Traversal
Binary Tree Traversal
Dhrumil Panchal
Ìý
AVL Tree
AVL TreeAVL Tree
AVL Tree
Dr Sandeep Kumar Poonia
Ìý
Depth first search and breadth first searching
Depth first search and breadth first searchingDepth first search and breadth first searching
Depth first search and breadth first searching
Kawsar Hamid Sumon
Ìý
Graphs bfs dfs
Graphs bfs dfsGraphs bfs dfs
Graphs bfs dfs
Jaya Gautam
Ìý
Depth firstsearchalgorithm
Depth firstsearchalgorithmDepth firstsearchalgorithm
Depth firstsearchalgorithm
hansa khan
Ìý
Tree
TreeTree
Tree
Raj Sarode
Ìý
Linked lists
Linked listsLinked lists
Linked lists
SARITHA REDDY
Ìý
Depth First Search ( DFS )
Depth First Search ( DFS )Depth First Search ( DFS )
Depth First Search ( DFS )
Sazzad Hossain
Ìý
Expression trees
Expression treesExpression trees
Expression trees
Salman Vadsarya
Ìý
Topological Sorting
Topological SortingTopological Sorting
Topological Sorting
ShahDhruv21
Ìý
Tree Traversal
Tree TraversalTree Traversal
Tree Traversal
Md. Israil Fakir
Ìý
Tree in data structure
Tree in data structureTree in data structure
Tree in data structure
ghhgj jhgh
Ìý
Bellman ford algorithm
Bellman ford algorithmBellman ford algorithm
Bellman ford algorithm
MdSajjadulislamBappi
Ìý
Circular link list.ppt
Circular link list.pptCircular link list.ppt
Circular link list.ppt
Tirthika Bandi
Ìý
Graph traversals in Data Structures
Graph traversals in Data StructuresGraph traversals in Data Structures
Graph traversals in Data Structures
Anandhasilambarasan D
Ìý
2.5 bfs & dfs 02
2.5 bfs & dfs 022.5 bfs & dfs 02
2.5 bfs & dfs 02
Krish_ver2
Ìý
Binary tree
Binary treeBinary tree
Binary tree
Rajendran
Ìý
Bfs and dfs in data structure
Bfs and dfs in  data structure Bfs and dfs in  data structure
Bfs and dfs in data structure
Ankit Kumar Singh
Ìý
Binary Tree Traversal
Binary Tree TraversalBinary Tree Traversal
Binary Tree Traversal
Dhrumil Panchal
Ìý
Depth first search and breadth first searching
Depth first search and breadth first searchingDepth first search and breadth first searching
Depth first search and breadth first searching
Kawsar Hamid Sumon
Ìý
Graphs bfs dfs
Graphs bfs dfsGraphs bfs dfs
Graphs bfs dfs
Jaya Gautam
Ìý
Depth firstsearchalgorithm
Depth firstsearchalgorithmDepth firstsearchalgorithm
Depth firstsearchalgorithm
hansa khan
Ìý
Depth First Search ( DFS )
Depth First Search ( DFS )Depth First Search ( DFS )
Depth First Search ( DFS )
Sazzad Hossain
Ìý
Topological Sorting
Topological SortingTopological Sorting
Topological Sorting
ShahDhruv21
Ìý
Tree in data structure
Tree in data structureTree in data structure
Tree in data structure
ghhgj jhgh
Ìý
Circular link list.ppt
Circular link list.pptCircular link list.ppt
Circular link list.ppt
Tirthika Bandi
Ìý

Similar to Graph traversal-BFS & DFS (20)

BFS & DFS in Data Structure
BFS & DFS in Data StructureBFS & DFS in Data Structure
BFS & DFS in Data Structure
Meghaj Mallick
Ìý
Breath first Search and Depth first search
Breath first Search and Depth first searchBreath first Search and Depth first search
Breath first Search and Depth first search
Kirti Verma
Ìý
LAB7_FILS_DSA_graphs_datastructures.pptx
LAB7_FILS_DSA_graphs_datastructures.pptxLAB7_FILS_DSA_graphs_datastructures.pptx
LAB7_FILS_DSA_graphs_datastructures.pptx
ionutionescuionut
Ìý
kumattt).pptx
kumattt).pptxkumattt).pptx
kumattt).pptx
gurukhade1
Ìý
Analysis & design of algorithm
Analysis & design of algorithmAnalysis & design of algorithm
Analysis & design of algorithm
rahela bham
Ìý
temp.pptxsusueueuune ueieoekeebhe ejene h
temp.pptxsusueueuune ueieoekeebhe ejene htemp.pptxsusueueuune ueieoekeebhe ejene h
temp.pptxsusueueuune ueieoekeebhe ejene h
harshitou754
Ìý
Graphs
GraphsGraphs
Graphs
Lakshmi Sarvani Videla
Ìý
Graph Data Structure
Graph Data StructureGraph Data Structure
Graph Data Structure
Afaq Mansoor Khan
Ìý
Graph
GraphGraph
Graph
Dr Sandeep Kumar Poonia
Ìý
130210107039 2130702
130210107039 2130702130210107039 2130702
130210107039 2130702
Ketaki_Pattani
Ìý
bfs tree searching ,sortingUntitled presentation.pptx
bfs tree searching ,sortingUntitled presentation.pptxbfs tree searching ,sortingUntitled presentation.pptx
bfs tree searching ,sortingUntitled presentation.pptx
saurabhpandey679381
Ìý
Graph data structures for ppt for understanding.pptx
Graph data structures for ppt for understanding.pptxGraph data structures for ppt for understanding.pptx
Graph data structures for ppt for understanding.pptx
ramkumar649780
Ìý
Bfs & dfs application
Bfs & dfs applicationBfs & dfs application
Bfs & dfs application
Umme habiba
Ìý
Depth first traversal(data structure algorithms)
Depth first traversal(data structure algorithms)Depth first traversal(data structure algorithms)
Depth first traversal(data structure algorithms)
bhuvaneshwariA5
Ìý
U1 L5 DAA.pdf
U1 L5 DAA.pdfU1 L5 DAA.pdf
U1 L5 DAA.pdf
LakshyaBaliyan2
Ìý
2.5 dfs & bfs
2.5 dfs & bfs2.5 dfs & bfs
2.5 dfs & bfs
Krish_ver2
Ìý
Graph Traversals
Graph TraversalsGraph Traversals
Graph Traversals
MaryJacob24
Ìý
COSC 3101A - Design and Analysis of Algorithms 10
COSC 3101A - Design and Analysis of Algorithms 10COSC 3101A - Design and Analysis of Algorithms 10
COSC 3101A - Design and Analysis of Algorithms 10
arif151901
Ìý
Analysis of Pathfinding Algorithms
Analysis of Pathfinding AlgorithmsAnalysis of Pathfinding Algorithms
Analysis of Pathfinding Algorithms
SigSegVSquad
Ìý
Graph
GraphGraph
Graph
Shakil Ahmed
Ìý
BFS & DFS in Data Structure
BFS & DFS in Data StructureBFS & DFS in Data Structure
BFS & DFS in Data Structure
Meghaj Mallick
Ìý
Breath first Search and Depth first search
Breath first Search and Depth first searchBreath first Search and Depth first search
Breath first Search and Depth first search
Kirti Verma
Ìý
LAB7_FILS_DSA_graphs_datastructures.pptx
LAB7_FILS_DSA_graphs_datastructures.pptxLAB7_FILS_DSA_graphs_datastructures.pptx
LAB7_FILS_DSA_graphs_datastructures.pptx
ionutionescuionut
Ìý
kumattt).pptx
kumattt).pptxkumattt).pptx
kumattt).pptx
gurukhade1
Ìý
Analysis & design of algorithm
Analysis & design of algorithmAnalysis & design of algorithm
Analysis & design of algorithm
rahela bham
Ìý
temp.pptxsusueueuune ueieoekeebhe ejene h
temp.pptxsusueueuune ueieoekeebhe ejene htemp.pptxsusueueuune ueieoekeebhe ejene h
temp.pptxsusueueuune ueieoekeebhe ejene h
harshitou754
Ìý
130210107039 2130702
130210107039 2130702130210107039 2130702
130210107039 2130702
Ketaki_Pattani
Ìý
bfs tree searching ,sortingUntitled presentation.pptx
bfs tree searching ,sortingUntitled presentation.pptxbfs tree searching ,sortingUntitled presentation.pptx
bfs tree searching ,sortingUntitled presentation.pptx
saurabhpandey679381
Ìý
Graph data structures for ppt for understanding.pptx
Graph data structures for ppt for understanding.pptxGraph data structures for ppt for understanding.pptx
Graph data structures for ppt for understanding.pptx
ramkumar649780
Ìý
Bfs & dfs application
Bfs & dfs applicationBfs & dfs application
Bfs & dfs application
Umme habiba
Ìý
Depth first traversal(data structure algorithms)
Depth first traversal(data structure algorithms)Depth first traversal(data structure algorithms)
Depth first traversal(data structure algorithms)
bhuvaneshwariA5
Ìý
2.5 dfs & bfs
2.5 dfs & bfs2.5 dfs & bfs
2.5 dfs & bfs
Krish_ver2
Ìý
Graph Traversals
Graph TraversalsGraph Traversals
Graph Traversals
MaryJacob24
Ìý
COSC 3101A - Design and Analysis of Algorithms 10
COSC 3101A - Design and Analysis of Algorithms 10COSC 3101A - Design and Analysis of Algorithms 10
COSC 3101A - Design and Analysis of Algorithms 10
arif151901
Ìý
Analysis of Pathfinding Algorithms
Analysis of Pathfinding AlgorithmsAnalysis of Pathfinding Algorithms
Analysis of Pathfinding Algorithms
SigSegVSquad
Ìý

More from Rajandeep Gill (7)

Chronic Kidney Disease Prediction
Chronic Kidney Disease PredictionChronic Kidney Disease Prediction
Chronic Kidney Disease Prediction
Rajandeep Gill
Ìý
4. avl
4. avl4. avl
4. avl
Rajandeep Gill
Ìý
Asymptotic Notation and Complexity
Asymptotic Notation and ComplexityAsymptotic Notation and Complexity
Asymptotic Notation and Complexity
Rajandeep Gill
Ìý
Operating system quiz
Operating system quizOperating system quiz
Operating system quiz
Rajandeep Gill
Ìý
Deadlock
DeadlockDeadlock
Deadlock
Rajandeep Gill
Ìý
Software Engineering Methodology
Software Engineering MethodologySoftware Engineering Methodology
Software Engineering Methodology
Rajandeep Gill
Ìý
Enterprise and Enterprise Application
Enterprise and Enterprise ApplicationEnterprise and Enterprise Application
Enterprise and Enterprise Application
Rajandeep Gill
Ìý
Chronic Kidney Disease Prediction
Chronic Kidney Disease PredictionChronic Kidney Disease Prediction
Chronic Kidney Disease Prediction
Rajandeep Gill
Ìý
Asymptotic Notation and Complexity
Asymptotic Notation and ComplexityAsymptotic Notation and Complexity
Asymptotic Notation and Complexity
Rajandeep Gill
Ìý
Operating system quiz
Operating system quizOperating system quiz
Operating system quiz
Rajandeep Gill
Ìý
Software Engineering Methodology
Software Engineering MethodologySoftware Engineering Methodology
Software Engineering Methodology
Rajandeep Gill
Ìý
Enterprise and Enterprise Application
Enterprise and Enterprise ApplicationEnterprise and Enterprise Application
Enterprise and Enterprise Application
Rajandeep Gill
Ìý

Recently uploaded (20)

Caddlance PortfolioMixed Projects 2024.pdf
Caddlance PortfolioMixed Projects 2024.pdfCaddlance PortfolioMixed Projects 2024.pdf
Caddlance PortfolioMixed Projects 2024.pdf
sonam254547
Ìý
Using 3D CAD in FIRST Tech Challenge - Fusion 360
Using 3D CAD in FIRST Tech Challenge - Fusion 360Using 3D CAD in FIRST Tech Challenge - Fusion 360
Using 3D CAD in FIRST Tech Challenge - Fusion 360
FTC Team 23014
Ìý
Software security: Security a Software Issue
Software security: Security a Software IssueSoftware security: Security a Software Issue
Software security: Security a Software Issue
Dr Sarika Jadhav
Ìý
Introduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptxIntroduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptx
pprakash21252
Ìý
Topic 3.NN and DL Hopfield Networks.pptx
Topic 3.NN and DL Hopfield Networks.pptxTopic 3.NN and DL Hopfield Networks.pptx
Topic 3.NN and DL Hopfield Networks.pptx
ManjulaRavichandran5
Ìý
Data+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdfData+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdf
Nguyễn Hải
Ìý
Cloudera Partner Network Enablement Full.pdf
Cloudera Partner Network Enablement Full.pdfCloudera Partner Network Enablement Full.pdf
Cloudera Partner Network Enablement Full.pdf
Nguyễn Hải
Ìý
Production Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptxProduction Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptx
VirajPasare
Ìý
Artificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptxArtificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptx
Vigneshwarar3
Ìý
e-health to improve the effectiveness of the Healthcare system
e-health to improve the  effectiveness of the Healthcare systeme-health to improve the  effectiveness of the Healthcare system
e-health to improve the effectiveness of the Healthcare system
Dr INBAMALAR T M
Ìý
Urban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdfUrban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdf
sonam254547
Ìý
module-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdfmodule-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdf
ritikkumarchaudhury7
Ìý
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
QualityManager48
Ìý
Chapter1-Introduction Εισαγωγικές έννοιες
Chapter1-Introduction Εισαγωγικές έννοιεςChapter1-Introduction Εισαγωγικές έννοιες
Chapter1-Introduction Εισαγωγικές έννοιες
ssuserb91a20
Ìý
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptxDAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
GellaBenson1
Ìý
wind energy types of turbines and advantages
wind energy types of turbines and advantageswind energy types of turbines and advantages
wind energy types of turbines and advantages
MahmudHalef
Ìý
Distributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdfDistributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdf
SantiagoCardonaGallo
Ìý
Instill-AI------------------------------
Instill-AI------------------------------Instill-AI------------------------------
Instill-AI------------------------------
Jason Kuan
Ìý
FIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competitionFIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competition
FTC Team 23014
Ìý
pptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienvepptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienve
jeevasreemurali
Ìý
Caddlance PortfolioMixed Projects 2024.pdf
Caddlance PortfolioMixed Projects 2024.pdfCaddlance PortfolioMixed Projects 2024.pdf
Caddlance PortfolioMixed Projects 2024.pdf
sonam254547
Ìý
Using 3D CAD in FIRST Tech Challenge - Fusion 360
Using 3D CAD in FIRST Tech Challenge - Fusion 360Using 3D CAD in FIRST Tech Challenge - Fusion 360
Using 3D CAD in FIRST Tech Challenge - Fusion 360
FTC Team 23014
Ìý
Software security: Security a Software Issue
Software security: Security a Software IssueSoftware security: Security a Software Issue
Software security: Security a Software Issue
Dr Sarika Jadhav
Ìý
Introduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptxIntroduction to 3D Printing Technology.pptx
Introduction to 3D Printing Technology.pptx
pprakash21252
Ìý
Topic 3.NN and DL Hopfield Networks.pptx
Topic 3.NN and DL Hopfield Networks.pptxTopic 3.NN and DL Hopfield Networks.pptx
Topic 3.NN and DL Hopfield Networks.pptx
ManjulaRavichandran5
Ìý
Data+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdfData+Management+Masterclasssdfsdfsdfsd.pdf
Data+Management+Masterclasssdfsdfsdfsd.pdf
Nguyễn Hải
Ìý
Cloudera Partner Network Enablement Full.pdf
Cloudera Partner Network Enablement Full.pdfCloudera Partner Network Enablement Full.pdf
Cloudera Partner Network Enablement Full.pdf
Nguyễn Hải
Ìý
Production Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptxProduction Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptx
VirajPasare
Ìý
Artificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptxArtificial-Intelligence-in-Cybersecurity.pptx
Artificial-Intelligence-in-Cybersecurity.pptx
Vigneshwarar3
Ìý
e-health to improve the effectiveness of the Healthcare system
e-health to improve the  effectiveness of the Healthcare systeme-health to improve the  effectiveness of the Healthcare system
e-health to improve the effectiveness of the Healthcare system
Dr INBAMALAR T M
Ìý
Urban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdfUrban Design and Planning Portfolio .pdf
Urban Design and Planning Portfolio .pdf
sonam254547
Ìý
module-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdfmodule-4.1-Class notes_R and DD_basket-IV -.pdf
module-4.1-Class notes_R and DD_basket-IV -.pdf
ritikkumarchaudhury7
Ìý
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
271094912XOULFHKBXRCVHBJKFG KMXCG HJKLMRTVBHNJMXRCVBHUINJ
QualityManager48
Ìý
Chapter1-Introduction Εισαγωγικές έννοιες
Chapter1-Introduction Εισαγωγικές έννοιεςChapter1-Introduction Εισαγωγικές έννοιες
Chapter1-Introduction Εισαγωγικές έννοιες
ssuserb91a20
Ìý
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptxDAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
DAY 4VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV.pptx
GellaBenson1
Ìý
wind energy types of turbines and advantages
wind energy types of turbines and advantageswind energy types of turbines and advantages
wind energy types of turbines and advantages
MahmudHalef
Ìý
Distributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdfDistributed renewable energy in Colombia.OECD2023.pdf
Distributed renewable energy in Colombia.OECD2023.pdf
SantiagoCardonaGallo
Ìý
Instill-AI------------------------------
Instill-AI------------------------------Instill-AI------------------------------
Instill-AI------------------------------
Jason Kuan
Ìý
FIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competitionFIRST Tech Challenge/Robotics: Scouting out the competition
FIRST Tech Challenge/Robotics: Scouting out the competition
FTC Team 23014
Ìý
pptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienvepptforclass10kkkkkkkclasseee2eewsw10scienve
pptforclass10kkkkkkkclasseee2eewsw10scienve
jeevasreemurali
Ìý

Graph traversal-BFS & DFS

  • 1. Graph Traversal Depth-First Search • Using Stack Breadth-First Search • Using Queue
  • 2. Overview • Goal – To systematically visit the nodes of a graph • A tree is a directed, acyclic, graph (DAG) • If the graph is a tree, – DFS is exhibited by preorder, postorder, and (for binary trees) inorder traversals – BFS is exhibited by level-order traversal
  • 3. Depth-First Search // recursive, preorder, depth-first search void dfs (Node v) { if (v == null) return; if (v not yet visited) visit&mark(v); // visit node before adjacent nodes for (each w adjacent to v) if (w has not yet been visited) dfs(w); } // dfs
  • 4. Example 0 7 1 5 4 3 2 6 Policy: Visit adjacent nodes in increasing index order
  • 5. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 3 2 7 6 4
  • 6. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 Push 5
  • 7. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 Pop/Visit/Mark 5
  • 8. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 2 Push 2, Push 1
  • 9. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 2 Pop/Visit/Mark 1
  • 10. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 4 2 Push 4, Push 0
  • 11. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 4 2 Pop/Visit/Mark 0
  • 12. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 3 7 4 2 Push 7, Push 3
  • 13. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 3 7 4 2 Pop/Visit/Mark 3
  • 14. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 3 7 4 2 2 is already in stack
  • 15. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 3 7 7 4 2 Pop/Mark/Visit 7
  • 16. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 3 7 6 4 2 Push 6
  • 17. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 3 7 6 4 2 Pop/Mark/Visit 6
  • 18. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 3 7 6 4 2 Pop/Mark/Visit 4
  • 19. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 3 7 6 4 2 Pop/Mark/Visit 2
  • 20. DFS: Start with Node 5 0 7 1 5 4 3 2 6 5 1 0 3 7 6 4 2 Done
  • 21. Breadth-first Search • Ripples in a pond • Visit designated node • Then visited unvisited nodes a distance i away, where i = 1, 2, 3, etc. • For nodes the same distance away, visit nodes in systematic manner (eg. increasing index order)
  • 22. Breadth-First Search // non-recursive, preorder, breadth-first search void bfs (Node v) { if (v == null) return; enqueue(v); while (queue is not empty) { dequeue(v); if (v has not yet been visited) mark&visit(v); for (each w adjacent to v) if (w has not yet been visited && has not been queued) enqueue(w); } // while } // bfs
  • 23. BFS: Start with Node 5 7 1 5 4 3 2 6 0
  • 24. BFS: Start with Node 5 7 1 5 4 3 2 6 0 5
  • 26. BFS: Visit 1 and add its adjacent nodes 7 1 5 4 3 2 6 5 1 0 5 1 2 0 4
  • 27. BFS: Visit 2 and add its adjacent nodes 7 1 5 4 3 2 6 5 1 2 0 5 1 2 0 4
  • 28. BFS: Visit 0 and add its adjacent nodes 7 1 5 4 3 2 6 5 1 2 0 0 5 1 2 0 4 3 7
  • 29. BFS: Visit 4 and add its adjacent nodes 7 1 5 4 3 2 6 5 1 2 0 4 0 5 1 2 0 4 3 7
  • 30. BFS: Visit 3 and add its adjacent nodes 7 1 5 4 3 2 6 5 1 2 0 4 3 0 5 1 2 0 4 3 7
  • 31. BFS: Visit 7 and add its adjacent nodes 7 1 5 4 3 2 6 5 1 2 0 4 3 7 0 5 1 2 0 4 3 7 6
  • 32. BFS: Visit 6 and add its adjacent nodes 7 1 5 4 3 2 6 5 1 2 0 4 3 7 6 0 5 1 2 0 4 3 7 6
  • 34. Applications of BFS • Computing Distances: Given a source vertex x, compute the distance of all vertices from x. • Checking for cycles in a graph: Given an undirected graph G, report whether there exists a cycle in the graph or not. (Note: won’t work for directed graphs) • Checking for bipartite graph: Given a graph, check whether it is bipartite or not? A graph is said to be bipartite if there is a partition of the vertex set V into two sets V1 and V2 such that if two vertices are adjacent, either both are in V1 or both are in V2. • Reachability: Given a graph G and vertices x and y, determine if there exists a path from x to y.
  • 35. Applications of DFS • Computing Strongly Connected Components: A directed graph is strongly connected if there exists a path from every vertex to every other vertex. Trivial Algo: Perform DFS n times. Efficient Algo: Single DFS. • Checking for Biconnected Graph: A graph is biconnected if removal of any vertex does not affect connectivity of the other vertices. Used to test if network is robust to failure of certain nodes. A single DFS traversal algorithm. • Topological Ordering: Topological sorting for Directed Acyclic Graph (DAG) is a linear ordering of vertices such that for every directed edge (x, y), vertex x comes before y in the ordering