Breadth First Search
Presented By:
Minhaz Uddin
ID: 151001612
BFS Definition:
BFS is an algorithm for traversing or searching tree
or graph data structures.
BFS Algorithm:
1.We pointed start vertice as level zero.
2.Starting from start vertice we visited all the
vertices that are at the distance of one edge away.
these vertices pointed as level one from the start
vertice and mark as visited.
3. we again visited all the new vertices that are at
the distance of one edge away from the level one.
these vertices pointed as level two and mark as
visited .
4.The process is continue until all the vertice mark
as visited.
BFS Example :
A
E
D
C
B
Queue
Start vertice : A
Output : A
Output : A B E
Queue
B
E
Current vertice: B
Output : A B E D
Queue
E
D
Current vertice: E
Output : A B E D C
Queue
D
C
Current vertice: D Current vertice: C
Output : A B E D C Output : A B E D C
Queue
C
Queue
Output : A B E D C
BFS is done
Queue

More Related Content

PPTX
Basic Blocks and Flow Graphs
PPT
Ch3 datalink
PPTX
Basic blocks and control flow graphs
PPTX
Error Detection and Correction - Data link Layer
PPT
The Data Link Layer
PPTX
Standing waves
DOCX
Tests
PPTX
Data link layar
Basic Blocks and Flow Graphs
Ch3 datalink
Basic blocks and control flow graphs
Error Detection and Correction - Data link Layer
The Data Link Layer
Standing waves
Tests
Data link layar

Similar to Bfs present (18)

PPTX
bfs tree searching ,sortingUntitled presentation.pptx
PPT
Data Structures-Non Linear DataStructures-Graphs
PPTX
WEB DEVELOPMET FRONT END WITH ADVANCED RECEAT
PPTX
Data structure Graph PPT ( BFS & DFS ) NOTES
PPTX
Breadth First Search with example and solutions
PPT
Graphs in data structures
DOC
BFS, Breadth first search | Search Traversal Algorithm
PPTX
Graph data structures for ppt for understanding.pptx
PPTX
Algorithms and data Chapter 3 V Graph.pptx
PPTX
breadth first traversal- tree traversal
PPT
14. GRAPH in data structures and algorithm.ppt
PPTX
Bfs and dfs
PDF
Analysis and design of algorithms part 3
PDF
Unit 4.2(graphs)
PPTX
Breadth first search (Bfs)
 
PPTX
Data structure
PDF
Class01_Computer_Contest_Level_3_Notes_Sep_07 - Copy.pdf
bfs tree searching ,sortingUntitled presentation.pptx
Data Structures-Non Linear DataStructures-Graphs
WEB DEVELOPMET FRONT END WITH ADVANCED RECEAT
Data structure Graph PPT ( BFS & DFS ) NOTES
Breadth First Search with example and solutions
Graphs in data structures
BFS, Breadth first search | Search Traversal Algorithm
Graph data structures for ppt for understanding.pptx
Algorithms and data Chapter 3 V Graph.pptx
breadth first traversal- tree traversal
14. GRAPH in data structures and algorithm.ppt
Bfs and dfs
Analysis and design of algorithms part 3
Unit 4.2(graphs)
Breadth first search (Bfs)
 
Data structure
Class01_Computer_Contest_Level_3_Notes_Sep_07 - Copy.pdf
Ad

Recently uploaded (20)

PPTX
Information Storage and Retrieval Techniques Unit III
PDF
Computer organization and architecuture Digital Notes....pdf
PPTX
Module 8- Technological and Communication Skills.pptx
PDF
UEFA_Carbon_Footprint_Calculator_Methology_2.0.pdf
PPTX
ai_satellite_crop_management_20250815030350.pptx
PDF
August -2025_Top10 Read_Articles_ijait.pdf
 
PPTX
CN_Unite_1 AI&DS ENGGERING SPPU PUNE UNIVERSITY
PPTX
Building constraction Conveyance of water.pptx
PPTX
AUTOMOTIVE ENGINE MANAGEMENT (MECHATRONICS).pptx
PDF
Implantable Drug Delivery System_NDDS_BPHARMACY__SEM VII_PCI .pdf
PDF
Influence of Green Infrastructure on Residents’ Endorsement of the New Ecolog...
PPTX
wireless networks, mobile computing.pptx
PPTX
Measurement Uncertainty and Measurement System analysis
PPT
Chapter 1 - Introduction to Manufacturing Technology_2.ppt
PPTX
A Brief Introduction to IoT- Smart Objects: The "Things" in IoT
PDF
August 2025 - Top 10 Read Articles in Network Security & Its Applications
PDF
Java Basics-Introduction and program control
PPTX
Software Engineering and software moduleing
PDF
Soil Improvement Techniques Note - Rabbi
PPTX
Chapter 2 -Technology and Enginerring Materials + Composites.pptx
Information Storage and Retrieval Techniques Unit III
Computer organization and architecuture Digital Notes....pdf
Module 8- Technological and Communication Skills.pptx
UEFA_Carbon_Footprint_Calculator_Methology_2.0.pdf
ai_satellite_crop_management_20250815030350.pptx
August -2025_Top10 Read_Articles_ijait.pdf
 
CN_Unite_1 AI&DS ENGGERING SPPU PUNE UNIVERSITY
Building constraction Conveyance of water.pptx
AUTOMOTIVE ENGINE MANAGEMENT (MECHATRONICS).pptx
Implantable Drug Delivery System_NDDS_BPHARMACY__SEM VII_PCI .pdf
Influence of Green Infrastructure on Residents’ Endorsement of the New Ecolog...
wireless networks, mobile computing.pptx
Measurement Uncertainty and Measurement System analysis
Chapter 1 - Introduction to Manufacturing Technology_2.ppt
A Brief Introduction to IoT- Smart Objects: The "Things" in IoT
August 2025 - Top 10 Read Articles in Network Security & Its Applications
Java Basics-Introduction and program control
Software Engineering and software moduleing
Soil Improvement Techniques Note - Rabbi
Chapter 2 -Technology and Enginerring Materials + Composites.pptx
Ad

Bfs present