SlideShare ist ein Scribd-Unternehmen logo
1 von 54
WELCOME
Topic
BFS, DFS
And Their
Application
Contents
Introduction
Graph Traversal
How it works
Algorithm
Simulation of DFS & BFS
Analysis of BFS & DFS
Applications
Presented by
Anika Ohab
ID:142-15-3568
Abul Hasnath
ID:142-15-3532
Umme Habiba
ID: 142-15-3677
Shahinur Rahman
ID: 142-15-3606
What is a graph?
1.Directed/Undire
cted
2.Weighted/Unwei
ghted
3.Cyclic/Acyclic
A set of vertices and edges
 Breadth First Search (BFS)
Start several paths at a time, and advance in each one step at a time
The breadth-first search uses a FIFO queue.
 Depth First Search (DFS)
Once a possible path is found, continue the search until the end of
the path
The Depth-first search uses a LIFO Stack.
Graph Traversal
How It Works?
1.Pick a source vertex S to start.
2.Discover the vertices that are adjacent to S.
Depth-first:
visit all neighbors of
a neighbor before
visiting your other
neighbors
Breadth First:
Pick each child of
S in turn and
discover their
vertices adjacent
to that child.
Done when all
children have been
discovered and
examined.
Algorithm
BFS(G, s)
for each vertex u V [G] - {s}
do color[u] ← WHITE
d[u] ← ∞
π[u] ← NIL
color[s] ← GRAY
d[s] ← 0
π[s] ← NIL
Q ← Ø
ENQUEUE(Q, s)
while Q ≠ Ø
do u ← DEQUEUE(Q)
for each v Adj[u]
do if color[v] = WHITE
then color[v] ← GRAY
d[v] ← d[u] + 1
π[v] ← u
ENQUEUE(Q, v)
color[u] ← BLACK
DFS(G)
for each vertex u V [G]
do color[u] ← WHITE
π[u] ← NIL
time ← 0
for each vertex u V [G]
do if color[u] = WHITE
then DFS-VISIT(u)
DFS-VISIT(u)
color[u] ← GRAY ▹White vertex u
has just been discovered.
time ← time +1
d[u] time
for each v Adj[u] ▹Explore edge(u,
v).
do if color[v] = WHITE
then π[v] ← u
DFS-VISIT(v)
color[u] BLACK ▹ Blacken u; it is
finished.
f [u] ▹ time ← time +1
Simulation
of BFS
3
1
6
10
9
7
12
3
Unvisite
d
6
7
This is starting node
3
1
6
10
9
7
12
3
Unvisite
d
6
7
Unvisite
d
10
3
1
6
10
9
7
12
6
7
10
Unvisite
d
9
3
1
6
10
9
7
12
7
10
9
Unvisite
d
12
3
1
6
10
9
7
12
10
9
12
visite
d
3
1
6
10
9
7
12
9
12
visite
d
3
1
6
10
9
7
12
12
Analysis of BFS
 For a Graph G=(V, E) and n = |V| and
m=|E|
 When Adjacency List is used
Complexity is O(m + n)
 When Adjacency Matrix is used
Scanning each row for checking the
connectivity of a Vertex is in order
O(n).
So, Complexity is O(n2 )
Simulation
of DFS
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C
D
E
F
G
H
Task: Conduct a depth-first search of the
graph starting with node D
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C
D √
E
F
G
H
Visit D
D
The order nodes are visited:
D
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C
D √
E
F
G
H
Consider nodes adjacent to D,
decide to visit C first (Rule:
visit adjacent nodes in
alphabetical order)
D
The order nodes are visited:
D
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C √
D √
E
F
G
H
Visit C
C
D
The order nodes are visited:
D, C
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C √
D √
E
F
G
H
No nodes adjacent to C; cannot
continue  backtrack, i.e.,
pop stack and restore
previous state
C
D
The order nodes are visited:
D, C
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C √
D √
E
F
G
H
Back to D – C has been visited,
decide to visit E next
D
The order nodes are visited:
D, C
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C √
D √
E √
F
G
H
Back to D – C has been visited,
decide to visit E next
E
D
The order nodes are visited:
D, C, E
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C √
D √
E √
F
G
H
Only G is adjacent to E
E
D
The order nodes are visited:
D, C, E
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C √
D √
E √
F
G √
H
Visit G
G
E
D
The order nodes are visited:
D, C, E, G
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C √
D √
E √
F
G √
H
Nodes D and H are adjacent to
G. D has already been
visited. Decide to visit H.
G
E
D
The order nodes are visited:
D, C, E, G
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C √
D √
E √
F
G √
H √
Visit H
H
G
E
D
The order nodes are visited:
D, C, E, G, H
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A
B
C √
D √
E √
F
G √
H √
Nodes A and B are adjacent to F.
Decide to visit A next.
H
G
E
D
The order nodes are visited:
D, C, E, G, H
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B
C √
D √
E √
F
G √
H √
Visit A
A
H
G
E
D
The order nodes are visited:
D, C, E, G, H, A
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B
C √
D √
E √
F
G √
H √
Only Node B is adjacent to A.
Decide to visit B next.
A
H
G
E
D
The order nodes are visited:
D, C, E, G, H, A
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B √
C √
D √
E √
F
G √
H √
Visit B
B
A
H
G
E
D
The order nodes are visited:
D, C, E, G, H, A, B
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B √
C √
D √
E √
F
G √
H √
No unvisited nodes adjacent to
B. Backtrack (pop the stack).
A
H
G
E
D
The order nodes are visited:
D, C, E, G, H, A, B
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B √
C √
D √
E √
F
G √
H √
No unvisited nodes adjacent to
A. Backtrack (pop the stack).
H
G
E
D
The order nodes are visited:
D, C, E, G, H, A, B
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B √
C √
D √
E √
F
G √
H √
No unvisited nodes adjacent to
H. Backtrack (pop the
stack).
G
E
D
The order nodes are visited:
D, C, E, G, H, A, B
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B √
C √
D √
E √
F
G √
H √
No unvisited nodes adjacent to
G. Backtrack (pop the
stack).
E
D
The order nodes are visited:
D, C, E, G, H, A, B
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B √
C √
D √
E √
F
G √
H √
No unvisited nodes adjacent to
E. Backtrack (pop the stack).
D
The order nodes are visited:
D, C, E, G, H, A, B
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B √
C √
D √
E √
F
G √
H √
F is unvisited and is adjacent to
D. Decide to visit F next.
D
The order nodes are visited:
D, C, E, G, H, A, B
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B √
C √
D √
E √
F √
G √
H √
Visit F
F
D
The order nodes are visited:
D, C, E, G, H, A, B, F
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B √
C √
D √
E √
F √
G √
H √
No unvisited nodes adjacent to
F. Backtrack.
D
The order nodes are visited:
D, C, E, G, H, A, B, F
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B √
C √
D √
E √
F √
G √
H √
No unvisited nodes adjacent to
D. Backtrack.
The order nodes are visited:
D, C, E, G, H, A, B, F
A
H
B
F
E
D
C
G
Walk-Through
Visited Array
A √
B √
C √
D √
E √
F √
G √
H √
Stack is empty. Depth-first
traversal is done.
The order nodes are visited:
D, C, E, G, H, A, B, F
For a Graph G=(V, E) and n = |V| and m=|E|
When Adjacency List is used Complexity is O(m + n)
When Adjacency Matrix is used Scanning each row
for checking the connectivity of a Vertex is in order O(n).
So, Complexity is O(n2 )
DFS uses space O(|V|) in the worst case to store the
stack of vertices on the current search path as well as
the set of already-visited vertices.
Analysis of DFS
BFS:
*Testing a graph for bipartiteness
*To find the shortest path from a vertex s to a
vertex v in an unweighted graph
*To find the length of such a path
*To find out if a graph contains cycles
*To construct a BSF tree/forest from a graph
*Copying garbage collection
Applications
DFS:
* Finding connected components.
*Topological sorting.
*Finding the bridges of a graph.
*cycle Detecting
*Finding strongly connected components.
*Finding biconnectivity in graphs.
Applications
How Can Use BFS
Bipartite graphs can’t contain odd
cycles.
Problem:
Determine if a graph G is bipartite.
Testing Bipartiteness
How can we test if G is bipartite?
1.Do a BFS starting from some node s.
2.Color even levels “blue” and odd levels
“red.”
3.Check each edge to see if any edge has
both endpoints the same color.
COMPUTING SPANNING
FORESTS
In graphs that are not connected, there can be no
spanning tree, and one must consider spanning
forests instead.
Finding Cycles Using DFS
• Similar to using BFS.
• For undirected graphs, classify the edges
into 3 categories during program
execution:
1.unvisited edge
2.discovery edge and
3.back (cross) edge.
• If there exists a back edge, the
undirected graph contains a cycle.
Simulation of Cycles
Bfs & dfs application
Bfs & dfs application

Weitere ähnliche Inhalte

Was ist angesagt?

1.1 binary tree
1.1 binary tree1.1 binary tree
1.1 binary treeKrish_ver2
 
Data Structures - Lecture 10 [Graphs]
Data Structures - Lecture 10 [Graphs]Data Structures - Lecture 10 [Graphs]
Data Structures - Lecture 10 [Graphs]Muhammad Hammad Waseem
 
Graph traversal-BFS & DFS
Graph traversal-BFS & DFSGraph traversal-BFS & DFS
Graph traversal-BFS & DFSRajandeep Gill
 
Binary search tree operations
Binary search tree operationsBinary search tree operations
Binary search tree operationsKamran Zafar
 
Graph representation
Graph representationGraph representation
Graph representationTech_MX
 
Arrays in Data Structure and Algorithm
Arrays in Data Structure and Algorithm Arrays in Data Structure and Algorithm
Arrays in Data Structure and Algorithm KristinaBorooah
 
Queue implementation
Queue implementationQueue implementation
Queue implementationRajendran
 
Breadth First Search & Depth First Search
Breadth First Search & Depth First SearchBreadth First Search & Depth First Search
Breadth First Search & Depth First SearchKevin Jadiya
 
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
 
Tree in data structure
Tree in data structureTree in data structure
Tree in data structureghhgj jhgh
 
Dfs presentation
Dfs presentationDfs presentation
Dfs presentationAlizay Khan
 
Data Structures - Lecture 9 [Stack & Queue using Linked List]
 Data Structures - Lecture 9 [Stack & Queue using Linked List] Data Structures - Lecture 9 [Stack & Queue using Linked List]
Data Structures - Lecture 9 [Stack & Queue using Linked List]Muhammad Hammad Waseem
 
A presentation on prim's and kruskal's algorithm
A presentation on prim's and kruskal's algorithmA presentation on prim's and kruskal's algorithm
A presentation on prim's and kruskal's algorithmGaurav Kolekar
 

Was ist angesagt? (20)

1.1 binary tree
1.1 binary tree1.1 binary tree
1.1 binary tree
 
Data Structures - Lecture 10 [Graphs]
Data Structures - Lecture 10 [Graphs]Data Structures - Lecture 10 [Graphs]
Data Structures - Lecture 10 [Graphs]
 
Graph traversal-BFS & DFS
Graph traversal-BFS & DFSGraph traversal-BFS & DFS
Graph traversal-BFS & DFS
 
Binary tree
Binary  treeBinary  tree
Binary tree
 
Binary search tree operations
Binary search tree operationsBinary search tree operations
Binary search tree operations
 
Bfs and Dfs
Bfs and DfsBfs and Dfs
Bfs and Dfs
 
Graph representation
Graph representationGraph representation
Graph representation
 
Arrays in Data Structure and Algorithm
Arrays in Data Structure and Algorithm Arrays in Data Structure and Algorithm
Arrays in Data Structure and Algorithm
 
Tree Traversal
Tree TraversalTree Traversal
Tree Traversal
 
Data Structure (Stack)
Data Structure (Stack)Data Structure (Stack)
Data Structure (Stack)
 
Spanning trees
Spanning treesSpanning trees
Spanning trees
 
Queue implementation
Queue implementationQueue implementation
Queue implementation
 
Breadth First Search & Depth First Search
Breadth First Search & Depth First SearchBreadth First Search & Depth First Search
Breadth First Search & Depth First Search
 
Bfs and dfs in data structure
Bfs and dfs in  data structure Bfs and dfs in  data structure
Bfs and dfs in data structure
 
Tree in data structure
Tree in data structureTree in data structure
Tree in data structure
 
Dfs presentation
Dfs presentationDfs presentation
Dfs presentation
 
Data Structures - Lecture 9 [Stack & Queue using Linked List]
 Data Structures - Lecture 9 [Stack & Queue using Linked List] Data Structures - Lecture 9 [Stack & Queue using Linked List]
Data Structures - Lecture 9 [Stack & Queue using Linked List]
 
Depth-First Search
Depth-First SearchDepth-First Search
Depth-First Search
 
A presentation on prim's and kruskal's algorithm
A presentation on prim's and kruskal's algorithmA presentation on prim's and kruskal's algorithm
A presentation on prim's and kruskal's algorithm
 
Heaps
HeapsHeaps
Heaps
 

Andere mochten auch

FotografĂ­as Favoritas
FotografĂ­as FavoritasFotografĂ­as Favoritas
FotografĂ­as Favoritascarogarciaz95
 
how to check line history
how to check line historyhow to check line history
how to check line historyCatherineRai
 
Focus Group
Focus GroupFocus Group
Focus GroupHannahO4997
 
งานนำเสนชุมชน (แก้ไข)
งานนำเสนชุมชน (แก้ไข)งานนำเสนชุมชน (แก้ไข)
งานนำเสนชุมชน (แก้ไข)Blsaw Wannarat
 
Science test
Science test Science test
Science test jcco1234
 
The forest around the planet
The forest around the planetThe forest around the planet
The forest around the planetjcco1234
 
how to track deleted line messages
how to track deleted line messageshow to track deleted line messages
how to track deleted line messagesCatherineRai
 
Passivhaus: What is it, and what has it got to do with me?
Passivhaus: What is it, and what has it got to do with me?Passivhaus: What is it, and what has it got to do with me?
Passivhaus: What is it, and what has it got to do with me?David Sharpe
 
how to hack my husbands LINE
how to hack my husbands LINE how to hack my husbands LINE
how to hack my husbands LINE CatherineRai
 
how to track line chat history
how to track line chat historyhow to track line chat history
how to track line chat historyCatherineRai
 
how to check line chat history of others
 how to check line chat history of others how to check line chat history of others
how to check line chat history of othersCatherineRai
 
how to track line chat remotely
how to track line chat remotelyhow to track line chat remotely
how to track line chat remotelyCatherineRai
 
Критрерії успіху вашого сайту
Критрерії успіху вашого сайтуКритрерії успіху вашого сайту
Критрерії успіху вашого сайтуOxana Zolotuhina
 

Andere mochten auch (17)

معرفی مرکز دولتی صدور گواهی الکترونیکی ریشه
معرفی مرکز دولتی صدور گواهی الکترونیکی ریشهمعرفی مرکز دولتی صدور گواهی الکترونیکی ریشه
معرفی مرکز دولتی صدور گواهی الکترونیکی ریشه
 
FotografĂ­as Favoritas
FotografĂ­as FavoritasFotografĂ­as Favoritas
FotografĂ­as Favoritas
 
how to check line history
how to check line historyhow to check line history
how to check line history
 
Focus Group
Focus GroupFocus Group
Focus Group
 
Korea
KoreaKorea
Korea
 
งานนำเสนชุมชน (แก้ไข)
งานนำเสนชุมชน (แก้ไข)งานนำเสนชุมชน (แก้ไข)
งานนำเสนชุมชน (แก้ไข)
 
slide do 5ÂşA
slide do 5ÂşAslide do 5ÂşA
slide do 5ÂşA
 
Science test
Science test Science test
Science test
 
The forest around the planet
The forest around the planetThe forest around the planet
The forest around the planet
 
how to track deleted line messages
how to track deleted line messageshow to track deleted line messages
how to track deleted line messages
 
Passivhaus: What is it, and what has it got to do with me?
Passivhaus: What is it, and what has it got to do with me?Passivhaus: What is it, and what has it got to do with me?
Passivhaus: What is it, and what has it got to do with me?
 
Readme
ReadmeReadme
Readme
 
how to hack my husbands LINE
how to hack my husbands LINE how to hack my husbands LINE
how to hack my husbands LINE
 
how to track line chat history
how to track line chat historyhow to track line chat history
how to track line chat history
 
how to check line chat history of others
 how to check line chat history of others how to check line chat history of others
how to check line chat history of others
 
how to track line chat remotely
how to track line chat remotelyhow to track line chat remotely
how to track line chat remotely
 
Критрерії успіху вашого сайту
Критрерії успіху вашого сайтуКритрерії успіху вашого сайту
Критрерії успіху вашого сайту
 

Ähnlich wie Bfs & dfs application

Breadth First Search (BFS)
Breadth First Search (BFS)Breadth First Search (BFS)
Breadth First Search (BFS)Ashish Ranjan
 
22-graphs1-dfs-bfs.ppt
22-graphs1-dfs-bfs.ppt22-graphs1-dfs-bfs.ppt
22-graphs1-dfs-bfs.pptKarunaBiswas3
 
22-graphs1-dfs-bfs.ppt odiehehei7hoh97ho7bi6vi6go7gp
22-graphs1-dfs-bfs.ppt odiehehei7hoh97ho7bi6vi6go7gp22-graphs1-dfs-bfs.ppt odiehehei7hoh97ho7bi6vi6go7gp
22-graphs1-dfs-bfs.ppt odiehehei7hoh97ho7bi6vi6go7gpchandrashekarr799
 
(Binary tree)
(Binary tree)(Binary tree)
(Binary tree)almario1988
 
Analysis and design of algorithms part 3
Analysis and design of algorithms part 3Analysis and design of algorithms part 3
Analysis and design of algorithms part 3Deepak John
 
graphin-c1.pnggraphin-c1.txt1 22 3 83 44 5.docx
graphin-c1.pnggraphin-c1.txt1 22 3 83 44 5.docxgraphin-c1.pnggraphin-c1.txt1 22 3 83 44 5.docx
graphin-c1.pnggraphin-c1.txt1 22 3 83 44 5.docxwhittemorelucilla
 
LEC 12-DSALGO-GRAPHS(final12).pdf
LEC 12-DSALGO-GRAPHS(final12).pdfLEC 12-DSALGO-GRAPHS(final12).pdf
LEC 12-DSALGO-GRAPHS(final12).pdfMuhammadUmerIhtisham
 
Breadth first search and depth first search
Breadth first search and  depth first searchBreadth first search and  depth first search
Breadth first search and depth first searchHossain Md Shakhawat
 
Analysis of Pathfinding Algorithms
Analysis of Pathfinding AlgorithmsAnalysis of Pathfinding Algorithms
Analysis of Pathfinding AlgorithmsSigSegVSquad
 
Depth First Search and Breadth First Search
Depth First Search and Breadth First SearchDepth First Search and Breadth First Search
Depth First Search and Breadth First SearchNisha Soms
 
2.5 bfs & dfs 02
2.5 bfs & dfs 022.5 bfs & dfs 02
2.5 bfs & dfs 02Krish_ver2
 
dfs-180809142044.pdf
dfs-180809142044.pdfdfs-180809142044.pdf
dfs-180809142044.pdfAshwin180668
 
Unit-6 Graph.ppsx ppt
Unit-6 Graph.ppsx                                       pptUnit-6 Graph.ppsx                                       ppt
Unit-6 Graph.ppsx pptDhruvilSTATUS
 
Analysis & design of algorithm
Analysis & design of algorithmAnalysis & design of algorithm
Analysis & design of algorithmrahela bham
 

Ähnlich wie Bfs & dfs application (20)

Breadth First Search (BFS)
Breadth First Search (BFS)Breadth First Search (BFS)
Breadth First Search (BFS)
 
22-graphs1-dfs-bfs.ppt
22-graphs1-dfs-bfs.ppt22-graphs1-dfs-bfs.ppt
22-graphs1-dfs-bfs.ppt
 
22-graphs1-dfs-bfs.ppt odiehehei7hoh97ho7bi6vi6go7gp
22-graphs1-dfs-bfs.ppt odiehehei7hoh97ho7bi6vi6go7gp22-graphs1-dfs-bfs.ppt odiehehei7hoh97ho7bi6vi6go7gp
22-graphs1-dfs-bfs.ppt odiehehei7hoh97ho7bi6vi6go7gp
 
(Binary tree)
(Binary tree)(Binary tree)
(Binary tree)
 
bfs[1].pptx
bfs[1].pptxbfs[1].pptx
bfs[1].pptx
 
Analysis and design of algorithms part 3
Analysis and design of algorithms part 3Analysis and design of algorithms part 3
Analysis and design of algorithms part 3
 
graphin-c1.pnggraphin-c1.txt1 22 3 83 44 5.docx
graphin-c1.pnggraphin-c1.txt1 22 3 83 44 5.docxgraphin-c1.pnggraphin-c1.txt1 22 3 83 44 5.docx
graphin-c1.pnggraphin-c1.txt1 22 3 83 44 5.docx
 
LEC 12-DSALGO-GRAPHS(final12).pdf
LEC 12-DSALGO-GRAPHS(final12).pdfLEC 12-DSALGO-GRAPHS(final12).pdf
LEC 12-DSALGO-GRAPHS(final12).pdf
 
Graphs
GraphsGraphs
Graphs
 
U1 L5 DAA.pdf
U1 L5 DAA.pdfU1 L5 DAA.pdf
U1 L5 DAA.pdf
 
Breadth first search and depth first search
Breadth first search and  depth first searchBreadth first search and  depth first search
Breadth first search and depth first search
 
Analysis of Pathfinding Algorithms
Analysis of Pathfinding AlgorithmsAnalysis of Pathfinding Algorithms
Analysis of Pathfinding Algorithms
 
Depth First Search and Breadth First Search
Depth First Search and Breadth First SearchDepth First Search and Breadth First Search
Depth First Search and Breadth First Search
 
2.5 bfs & dfs 02
2.5 bfs & dfs 022.5 bfs & dfs 02
2.5 bfs & dfs 02
 
Graph
GraphGraph
Graph
 
dfs-180809142044.pdf
dfs-180809142044.pdfdfs-180809142044.pdf
dfs-180809142044.pdf
 
Dfs
DfsDfs
Dfs
 
Unit-6 Graph.ppsx ppt
Unit-6 Graph.ppsx                                       pptUnit-6 Graph.ppsx                                       ppt
Unit-6 Graph.ppsx ppt
 
Graphs
GraphsGraphs
Graphs
 
Analysis & design of algorithm
Analysis & design of algorithmAnalysis & design of algorithm
Analysis & design of algorithm
 

Mehr von Umme habiba

Compiler lab final report writing
Compiler lab final report writingCompiler lab final report writing
Compiler lab final report writingUmme habiba
 
online bus ticket booking system
online bus ticket booking systemonline bus ticket booking system
online bus ticket booking systemUmme habiba
 
online bus ticket booking system
online bus ticket booking systemonline bus ticket booking system
online bus ticket booking systemUmme habiba
 
online bus ticket booking system
online bus ticket booking systemonline bus ticket booking system
online bus ticket booking systemUmme habiba
 
Accounting adjusting
Accounting adjustingAccounting adjusting
Accounting adjustingUmme habiba
 
Economic.assignment
Economic.assignmentEconomic.assignment
Economic.assignmentUmme habiba
 
Major economic problems of bangladesh
Major economic problems of bangladeshMajor economic problems of bangladesh
Major economic problems of bangladeshUmme habiba
 
Overview of various types of operating system
Overview of various types of operating systemOverview of various types of operating system
Overview of various types of operating systemUmme habiba
 
Os lab report(shell coding)
Os lab report(shell coding)Os lab report(shell coding)
Os lab report(shell coding)Umme habiba
 
Ecommerce(online Shopping)
Ecommerce(online Shopping)Ecommerce(online Shopping)
Ecommerce(online Shopping)Umme habiba
 
Different types of Addressing.cao
Different types of Addressing.caoDifferent types of Addressing.cao
Different types of Addressing.caoUmme habiba
 
2nd generation of computer
2nd generation of computer2nd generation of computer
2nd generation of computerUmme habiba
 
Art_of_living assignment
Art_of_living assignmentArt_of_living assignment
Art_of_living assignmentUmme habiba
 
Art_of_living
Art_of_livingArt_of_living
Art_of_livingUmme habiba
 
Informationsecurity
InformationsecurityInformationsecurity
InformationsecurityUmme habiba
 
SQL Joinning.Database
SQL Joinning.DatabaseSQL Joinning.Database
SQL Joinning.DatabaseUmme habiba
 
WLAN of networking.ppt
WLAN of networking.pptWLAN of networking.ppt
WLAN of networking.pptUmme habiba
 
simpson's in numerical method
simpson's in numerical methodsimpson's in numerical method
simpson's in numerical methodUmme habiba
 
Error detection in Data comunication
 Error detection in Data comunication Error detection in Data comunication
Error detection in Data comunicationUmme habiba
 
microsoft word & powerpoint
 microsoft word & powerpoint microsoft word & powerpoint
microsoft word & powerpointUmme habiba
 

Mehr von Umme habiba (20)

Compiler lab final report writing
Compiler lab final report writingCompiler lab final report writing
Compiler lab final report writing
 
online bus ticket booking system
online bus ticket booking systemonline bus ticket booking system
online bus ticket booking system
 
online bus ticket booking system
online bus ticket booking systemonline bus ticket booking system
online bus ticket booking system
 
online bus ticket booking system
online bus ticket booking systemonline bus ticket booking system
online bus ticket booking system
 
Accounting adjusting
Accounting adjustingAccounting adjusting
Accounting adjusting
 
Economic.assignment
Economic.assignmentEconomic.assignment
Economic.assignment
 
Major economic problems of bangladesh
Major economic problems of bangladeshMajor economic problems of bangladesh
Major economic problems of bangladesh
 
Overview of various types of operating system
Overview of various types of operating systemOverview of various types of operating system
Overview of various types of operating system
 
Os lab report(shell coding)
Os lab report(shell coding)Os lab report(shell coding)
Os lab report(shell coding)
 
Ecommerce(online Shopping)
Ecommerce(online Shopping)Ecommerce(online Shopping)
Ecommerce(online Shopping)
 
Different types of Addressing.cao
Different types of Addressing.caoDifferent types of Addressing.cao
Different types of Addressing.cao
 
2nd generation of computer
2nd generation of computer2nd generation of computer
2nd generation of computer
 
Art_of_living assignment
Art_of_living assignmentArt_of_living assignment
Art_of_living assignment
 
Art_of_living
Art_of_livingArt_of_living
Art_of_living
 
Informationsecurity
InformationsecurityInformationsecurity
Informationsecurity
 
SQL Joinning.Database
SQL Joinning.DatabaseSQL Joinning.Database
SQL Joinning.Database
 
WLAN of networking.ppt
WLAN of networking.pptWLAN of networking.ppt
WLAN of networking.ppt
 
simpson's in numerical method
simpson's in numerical methodsimpson's in numerical method
simpson's in numerical method
 
Error detection in Data comunication
 Error detection in Data comunication Error detection in Data comunication
Error detection in Data comunication
 
microsoft word & powerpoint
 microsoft word & powerpoint microsoft word & powerpoint
microsoft word & powerpoint
 

KĂźrzlich hochgeladen

KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptxJIT KUMAR GUPTA
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoordharasingh5698
 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086anil_gaur
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startQuintin Balsdon
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsArindam Chakraborty, Ph.D., P.E. (CA, TX)
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityMorshed Ahmed Rahath
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 

KĂźrzlich hochgeladen (20)

KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoorTop Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
Top Rated Call Girls In chittoor 📱 {7001035870} VIP Escorts chittoor
 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Netaji Nagar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 

Bfs & dfs application