SlideShare a Scribd company logo
Course Title: Algorithm
Course Code: CSE 215
Atikur Rahman
163432007
Anupom Shill
163432030
Md Ikram Ullah
163432017
Kamrul Hasan
Akash
163432028
Md Alamin
163432033
Breadth first search (BFS)
Depth First Search (DFS )
Introduction
Graph Traversal
How it works
Simulation of DFS & BFS
 A set of vertices and edges.
1.Directed/Undirected
2.Weighted/Unweighted
 Breadth First Search (BFS)
The breadth-first search uses a FIFO queue.
Depth First Search (DFS)
The Depth-first search uses a LIFO Stack.
Breadth First Search (BFS)
1.Pick a source vertex S to start.
2.Discover the vertices that are adjacent to S.
Breadth First: Pick each
child of S in turn and
discover their vertices
adjacent to that child.
Algorithm
1
1 3
Step 1
1 3 6
1 3 6 7
1 3 6 7 10
1 3 6 7 10
9
1 3 6 7 10 9
12
Simulation of DFS
Pre Order
In Order
Post Order
Root – Left – Right
1 21
1 2 3 41 2 3
1 2 3 4 5 1 2 3 4 5 6
1 2 3 4 5 6 7 1 2 3 4 5 6 7 8
 Left – Root - Right
4 4 3
4 3 5 4 3 5 2
4 3 5 2 1 4 3 5 2 1 7
4 3 5 2 1 7 6
4 3 5 2 1 7 6 8
Left – Right – Root
4 4 5
4 5 3 4 5 3 2
4 5 3 2 7 4 5 3 2 7 8
4 5 3 2 7 8 6
1
4 5 3 2 7 8 6
Algorithm
Algorithm

More Related Content

PPT
PPTX
Depth first search and breadth first searching
PPTX
Bfs and dfs
PPTX
BFS and DFS
PPTX
BFS & DFS in Data Structure
PPTX
Breadth-First Search and Depth-First Search.pptx
PPTX
Data structure
PPTX
kumattt).pptx
Depth first search and breadth first searching
Bfs and dfs
BFS and DFS
BFS & DFS in Data Structure
Breadth-First Search and Depth-First Search.pptx
Data structure
kumattt).pptx

Similar to Algorithm (20)

PDF
ada-191015145338.pdf
PPTX
Breadth first search (Bfs)
PPTX
bfs and dfs (data structures).pptx
PPTX
Breadth First Search (BFS)
PPTX
Understanding Graph Traversal Algorithms A Deep Dive into BFS and DFS
PPTX
Breath first Search and Depth first search
PPTX
BFS and DFS transversal algorithmsanshdh
PPTX
Problem Solving through Search - Uninformed Search
PDF
Breadth First Search and Depth First Search Algorithm
PPTX
DFS & BFS in Computer Algorithm
PPTX
DFS & BFS Graph
PPTX
Search Algorithms in AI.pptx
PPTX
DFS and BFS
PPT
Graph traversal-BFS & DFS
PPTX
Lec 15-graph Searching in data structure and lgorithm.pptx
DOC
BFS, Breadth first search | Search Traversal Algorithm
PPTX
Data Structure and Algorithms Graph Traversal
PPTX
Presentation on Breadth First Search (BFS)
PPT
Breadth first search and depth first search
PPTX
Bfs and Dfs
ada-191015145338.pdf
Breadth first search (Bfs)
bfs and dfs (data structures).pptx
Breadth First Search (BFS)
Understanding Graph Traversal Algorithms A Deep Dive into BFS and DFS
Breath first Search and Depth first search
BFS and DFS transversal algorithmsanshdh
Problem Solving through Search - Uninformed Search
Breadth First Search and Depth First Search Algorithm
DFS & BFS in Computer Algorithm
DFS & BFS Graph
Search Algorithms in AI.pptx
DFS and BFS
Graph traversal-BFS & DFS
Lec 15-graph Searching in data structure and lgorithm.pptx
BFS, Breadth first search | Search Traversal Algorithm
Data Structure and Algorithms Graph Traversal
Presentation on Breadth First Search (BFS)
Breadth first search and depth first search
Bfs and Dfs
Ad

Recently uploaded (20)

PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
Welding lecture in detail for understanding
PPTX
UNIT 4 Total Quality Management .pptx
PDF
PPT on Performance Review to get promotions
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
OOP with Java - Java Introduction (Basics)
DOCX
573137875-Attendance-Management-System-original
PPTX
CH1 Production IntroductoryConcepts.pptx
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PDF
Well-logging-methods_new................
PPT
Mechanical Engineering MATERIALS Selection
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
Operating System & Kernel Study Guide-1 - converted.pdf
Internet of Things (IOT) - A guide to understanding
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
Welding lecture in detail for understanding
UNIT 4 Total Quality Management .pptx
PPT on Performance Review to get promotions
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
OOP with Java - Java Introduction (Basics)
573137875-Attendance-Management-System-original
CH1 Production IntroductoryConcepts.pptx
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
Model Code of Practice - Construction Work - 21102022 .pdf
Well-logging-methods_new................
Mechanical Engineering MATERIALS Selection
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
bas. eng. economics group 4 presentation 1.pptx
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
Ad

Algorithm