SlideShare a Scribd company logo
1 of 50
Download to read offline
Data Structure
GRAPH
1
5
Prepared by: Mir Omranudin Abhar
Email : MirOmran@Gamil.com
Spring , 2019
2
Graph
β€’ Non-Linear Data Structure
β€’ Non- Primitive Data Structure
β€’ Dynamic Data Structure
Google -Map
3
Facebook-Friends
4
Operating System
5
Graph
6
Graph-Type
7
Graph- Limitations
8
Graph- Complete Graph (Undirected )
9
π‘‘π‘œπ‘‘π‘Žπ‘™ 𝑒𝑑𝑔𝑒 =
𝑣(𝑣 βˆ’ 1)
2
Graph- Complete Graph (Directed )
10
π‘‘π‘œπ‘‘π‘Žπ‘™ 𝑒𝑑𝑔𝑒 = 𝑣(𝑣 βˆ’ 1)
Graph- Sub graph
11
Graph- Adjacent
12
𝐸𝑑𝑔𝑒 β†’ 𝐡, 𝐷
π‘Žπ‘—π‘Žπ‘π‘’π‘›π‘‘ β†’ (𝐡, 𝐷)
Graph- Simple ( Path )
13
Simple path: π‘‡β„Žπ‘’ π‘ƒπ‘Žπ‘‘β„Ž π‘€π‘–π‘‘β„Ž π‘›π‘œ π‘Ÿπ‘’π‘π‘’π‘Žπ‘‘π‘Ÿπ‘’π‘‘ π‘£π‘’π‘Ÿπ‘‘π‘–π‘π‘’π‘ 
π‘ƒπ‘Žπ‘‘β„Ž β†’ (𝐡, 𝐷, 𝐢, 𝐴)
Graph- Cycle ( Path )
14
Cycle:
π‘ π‘–π‘šπ‘π‘™π‘’ π‘π‘Žπ‘‘β„Ž, 𝑒π‘₯𝑐𝑒𝑝𝑑 π‘‘β„Žπ‘Žπ‘‘ π‘‘β„Žπ‘’ π‘™π‘Žπ‘ π‘‘ π‘£π‘’π‘Ÿπ‘‘π‘’π‘₯ 𝑖𝑠 π‘‘β„Žπ‘’ π‘ π‘Žπ‘šπ‘’ π‘Žπ‘  π‘‘β„Žπ‘’ π‘“π‘–π‘Ÿπ‘ π‘‘ π‘£π‘’π‘Ÿπ‘‘π‘’π‘₯
π‘ƒπ‘Žπ‘‘β„Ž β†’ (𝐡, 𝐷, 𝐢, 𝐴, 𝐡)
Graph- (Connected & Non-Connected)
15
Non Connected Graph
Connected Graph
Strongly Connected
Graph- (Representation) - Matrix
16
Graph- (Representation) - Matrix
17
Graph- Adjacency Matrix Representation
of Graph
18
Graph- Adjacency List Representation of
Graph
19
Graph- Adjacency List Representation of
Graph
20
Graph- Adjacency List Representation of
Graph
21
Graph- Traversal Algorithm
22
β€’ BFS (Breath First Search)
β€’ DFS (Depth First Search)
Breadth first search (BFS)
23
Queue Data Structure : First in First Out
Breadth first search (BFS)
24
Time Complexity : O(bd)
Space Complexity : O(bd
)
b
:
‫اکثر‬ ‫حد‬
childe Node
‫که‬ β€«Ω‡Ψ§ΫŒβ€¬
parent Node
‫داشΨͺه‬ β€«Ω…ΫŒΨͺΩˆΨ§Ω†Ψ―β€¬
‫باشد‬
.
d
:
‫کمΨͺΨ±ΫŒΩ†β€¬ ‫Ψͺعداد‬
level
‫به‬ β€«Ψ±Ψ³ΫŒΨ―Ω†β€¬ β€«Ψ¨Ψ±Ψ§ΫŒβ€¬
node
β€«ΫŒΪ©β€¬ ‫در‬ ‫هدف‬
tree
.
Breadth first search (BFS) – Example[ 1 ]
25
Step: 1 BFS
Breadth first search (BFS) – Example[ 1 ]
26
Step: 2 BFS
Breadth first search (BFS) – Example[ 1 ]
27
Step: 3 BFS
Breadth first search (BFS) – Example[ 1 ]
28
Step: 4 BFS
Breadth first search (BFS) – Example[ 1 ]
29
Step: 5 BFS
Breadth first search (BFS) – Example[ 1 ]
30
Step: 6 BFS
Breadth first search (BFS) – Example[ 1 ]
31
Step: 7 BFS
Breadth first search (BFS) – Example[ 1 ]
32
Step: 8 BFS
Breadth first search (BFS) – Example[ 2 ]
33
BFS
Breadth first search (BFS) – Example[ 3 ]
34
BFS
Depth first search (DFS)
35
Stack Data Structure : Last in First Out
Depth first search (DFS)
36
Time Complexity : O(bm)
Space Complexity : O(b )
b
:
‫اکثر‬ ‫حد‬
childe Node
‫که‬ β€«Ω‡Ψ§ΫŒβ€¬
parent Node
‫داشΨͺه‬ β€«Ω…ΫŒΨͺΩˆΨ§Ω†Ψ―β€¬
‫باشد‬
.
m
:
‫Ψͺمام‬ β€«Ω…Ψ¬Ω…ΩˆΨΉβ€¬
level
β€«ΫŒΪ©β€¬ ‫در‬ ‫ها‬
tree
.
Depth first search(DFS) – Example[ 1 ]
37
Step: 1 DFS
Depth first search(DFS) – Example[ 1 ]
38
Step: 2 DFS
Depth first search(DFS) – Example[ 1 ]
39
Step: 3 DFS
Depth first search(DFS) – Example[ 1 ]
40
Step: 4 DFS
Depth first search(DFS) – Example[ 1 ]
41
Step: 5 DFS
Depth first search(DFS) – Example[ 1 ]
42
Step: 6 DFS
Depth first search(DFS) – Example[ 1 ]
43
Step: 7 DFS
Depth first search(DFS) – Example[ 1 ]
44
Step: 8 DFS
Depth first search(DFS) – Example[ 1 ]
45
Step: 9 DFS
Depth first search(DFS) – Example[ 2 ]
46
DFS
Depth first search(DFS) – Example[ 3 ]
47
DFS
Compare (BFS & DFS) – example(1)
48
Compare (BFS & DFS) – example(2)
49
Question
.1
https://www.rollapp.com/
β€«Ω†Ω…Ψ§ΫŒΨ―β€¬ ‫ΨͺΨ­Ω‚ΫŒΩ‚β€¬ β€«Ψ³Ψ§ΫŒΨͺ‬ β€«Ψ§ΫŒΩ†β€¬ ‫به‬ ‫ارΨͺباط‬ ‫در‬
β€«ΨŸβ€¬
.2
Big Data
β€«Ϊ†ΫŒΨ³Ψͺ‬
,
β€«Ω†Ω…Ψ§ΫŒΨ―ΨŸβ€¬ ‫ΨͺΨ­Ω‚ΫŒΩ‚β€¬
.3
β€«Ψ§ΩˆΨ±Ψ―Ω†β€¬ ‫بدسΨͺ‬ β€«Ψ¨Ψ±Ψ§ΫŒβ€¬
value
β€«ΫŒβ€¬ ‫ها‬
miss
‫در‬ ‫شده‬
database
‫ها‬ β€«Ψ§Ω„Ϊ―ΩˆΨ±ΫŒΨͺم‬ ‫کدام‬ ‫از‬
β€«Ω…ΫŒΨ΄ΩˆΨ―β€¬ ‫اسΨͺفاده‬
β€«ΨŸβ€¬
50

More Related Content

What's hot

Breadth First Search Algorithm In 10 Minutes | Artificial Intelligence Tutori...
Breadth First Search Algorithm In 10 Minutes | Artificial Intelligence Tutori...Breadth First Search Algorithm In 10 Minutes | Artificial Intelligence Tutori...
Breadth First Search Algorithm In 10 Minutes | Artificial Intelligence Tutori...Edureka!
Β 
Presentation on Breadth First Search (BFS)
Presentation on Breadth First Search (BFS)Presentation on Breadth First Search (BFS)
Presentation on Breadth First Search (BFS)Shuvongkor Barman
Β 
[Question Paper] Modern Operating System (Revised Course) [April / 2015]
[Question Paper] Modern Operating System (Revised Course) [April / 2015][Question Paper] Modern Operating System (Revised Course) [April / 2015]
[Question Paper] Modern Operating System (Revised Course) [April / 2015]Mumbai B.Sc.IT Study
Β 
[Question Paper] Modern Operating System (Revised Course) [January / 2014]
[Question Paper] Modern Operating System (Revised Course) [January / 2014][Question Paper] Modern Operating System (Revised Course) [January / 2014]
[Question Paper] Modern Operating System (Revised Course) [January / 2014]Mumbai B.Sc.IT Study
Β 
Digital Signals and Systems (December – 2017) [Question Paper | IDOL: Revised...
Digital Signals and Systems (December – 2017) [Question Paper | IDOL: Revised...Digital Signals and Systems (December – 2017) [Question Paper | IDOL: Revised...
Digital Signals and Systems (December – 2017) [Question Paper | IDOL: Revised...Mumbai B.Sc.IT Study
Β 
YCMOU_FYBCA_DS_Unit-7.ppt
YCMOU_FYBCA_DS_Unit-7.pptYCMOU_FYBCA_DS_Unit-7.ppt
YCMOU_FYBCA_DS_Unit-7.pptsandeep54552
Β 
Network Security (Revised Syllabus) [QP / May - 2016]
Network Security (Revised Syllabus) [QP / May - 2016]Network Security (Revised Syllabus) [QP / May - 2016]
Network Security (Revised Syllabus) [QP / May - 2016]Mumbai B.Sc.IT Study
Β 
[Question Paper] Fundamentals of Digital Computing (Revised Course) [May / 2016]
[Question Paper] Fundamentals of Digital Computing (Revised Course) [May / 2016][Question Paper] Fundamentals of Digital Computing (Revised Course) [May / 2016]
[Question Paper] Fundamentals of Digital Computing (Revised Course) [May / 2016]Mumbai B.Sc.IT Study
Β 
[Question Paper] Modern Operating System (Revised Course) [January / 2017]
[Question Paper] Modern Operating System (Revised Course) [January / 2017][Question Paper] Modern Operating System (Revised Course) [January / 2017]
[Question Paper] Modern Operating System (Revised Course) [January / 2017]Mumbai B.Sc.IT Study
Β 
[Question Paper] Data Communication and Network Standards (Revised Course) [J...
[Question Paper] Data Communication and Network Standards (Revised Course) [J...[Question Paper] Data Communication and Network Standards (Revised Course) [J...
[Question Paper] Data Communication and Network Standards (Revised Course) [J...Mumbai B.Sc.IT Study
Β 
[Question Paper] Data Communication and Network Standards (Revised Course) [A...
[Question Paper] Data Communication and Network Standards (Revised Course) [A...[Question Paper] Data Communication and Network Standards (Revised Course) [A...
[Question Paper] Data Communication and Network Standards (Revised Course) [A...Mumbai B.Sc.IT Study
Β 
[Question Paper] Operating System (Old Course) [June / 2014]
[Question Paper] Operating System (Old Course) [June / 2014][Question Paper] Operating System (Old Course) [June / 2014]
[Question Paper] Operating System (Old Course) [June / 2014]Mumbai B.Sc.IT Study
Β 
ASP.NET With C# (Revised Syllabus) [QP / April - 2014]
ASP.NET With C# (Revised Syllabus) [QP / April - 2014]ASP.NET With C# (Revised Syllabus) [QP / April - 2014]
ASP.NET With C# (Revised Syllabus) [QP / April - 2014]Mumbai B.Sc.IT Study
Β 
[Question Paper] Database Management Systems (Revised Course) [September / 2013]
[Question Paper] Database Management Systems (Revised Course) [September / 2013][Question Paper] Database Management Systems (Revised Course) [September / 2013]
[Question Paper] Database Management Systems (Revised Course) [September / 2013]Mumbai B.Sc.IT Study
Β 
[Question Paper] Computer Graphics (Revised Course) [April / 2014]
[Question Paper] Computer Graphics (Revised Course) [April / 2014][Question Paper] Computer Graphics (Revised Course) [April / 2014]
[Question Paper] Computer Graphics (Revised Course) [April / 2014]Mumbai B.Sc.IT Study
Β 

What's hot (20)

Breadth First Search Algorithm In 10 Minutes | Artificial Intelligence Tutori...
Breadth First Search Algorithm In 10 Minutes | Artificial Intelligence Tutori...Breadth First Search Algorithm In 10 Minutes | Artificial Intelligence Tutori...
Breadth First Search Algorithm In 10 Minutes | Artificial Intelligence Tutori...
Β 
Presentation on Breadth First Search (BFS)
Presentation on Breadth First Search (BFS)Presentation on Breadth First Search (BFS)
Presentation on Breadth First Search (BFS)
Β 
[Question Paper] Modern Operating System (Revised Course) [April / 2015]
[Question Paper] Modern Operating System (Revised Course) [April / 2015][Question Paper] Modern Operating System (Revised Course) [April / 2015]
[Question Paper] Modern Operating System (Revised Course) [April / 2015]
Β 
[Question Paper] Modern Operating System (Revised Course) [January / 2014]
[Question Paper] Modern Operating System (Revised Course) [January / 2014][Question Paper] Modern Operating System (Revised Course) [January / 2014]
[Question Paper] Modern Operating System (Revised Course) [January / 2014]
Β 
Digital Signals and Systems (December – 2017) [Question Paper | IDOL: Revised...
Digital Signals and Systems (December – 2017) [Question Paper | IDOL: Revised...Digital Signals and Systems (December – 2017) [Question Paper | IDOL: Revised...
Digital Signals and Systems (December – 2017) [Question Paper | IDOL: Revised...
Β 
YCMOU_FYBCA_DS_Unit-7.ppt
YCMOU_FYBCA_DS_Unit-7.pptYCMOU_FYBCA_DS_Unit-7.ppt
YCMOU_FYBCA_DS_Unit-7.ppt
Β 
Network Security (Revised Syllabus) [QP / May - 2016]
Network Security (Revised Syllabus) [QP / May - 2016]Network Security (Revised Syllabus) [QP / May - 2016]
Network Security (Revised Syllabus) [QP / May - 2016]
Β 
[Question Paper] Fundamentals of Digital Computing (Revised Course) [May / 2016]
[Question Paper] Fundamentals of Digital Computing (Revised Course) [May / 2016][Question Paper] Fundamentals of Digital Computing (Revised Course) [May / 2016]
[Question Paper] Fundamentals of Digital Computing (Revised Course) [May / 2016]
Β 
Functions
FunctionsFunctions
Functions
Β 
[Question Paper] Modern Operating System (Revised Course) [January / 2017]
[Question Paper] Modern Operating System (Revised Course) [January / 2017][Question Paper] Modern Operating System (Revised Course) [January / 2017]
[Question Paper] Modern Operating System (Revised Course) [January / 2017]
Β 
[Question Paper] Data Communication and Network Standards (Revised Course) [J...
[Question Paper] Data Communication and Network Standards (Revised Course) [J...[Question Paper] Data Communication and Network Standards (Revised Course) [J...
[Question Paper] Data Communication and Network Standards (Revised Course) [J...
Β 
Pt 3 xii cs final
Pt 3 xii cs finalPt 3 xii cs final
Pt 3 xii cs final
Β 
Bfs and Dfs
Bfs and DfsBfs and Dfs
Bfs and Dfs
Β 
Close Graph
Close GraphClose Graph
Close Graph
Β 
DFS & BFS Graph
DFS & BFS GraphDFS & BFS Graph
DFS & BFS Graph
Β 
[Question Paper] Data Communication and Network Standards (Revised Course) [A...
[Question Paper] Data Communication and Network Standards (Revised Course) [A...[Question Paper] Data Communication and Network Standards (Revised Course) [A...
[Question Paper] Data Communication and Network Standards (Revised Course) [A...
Β 
[Question Paper] Operating System (Old Course) [June / 2014]
[Question Paper] Operating System (Old Course) [June / 2014][Question Paper] Operating System (Old Course) [June / 2014]
[Question Paper] Operating System (Old Course) [June / 2014]
Β 
ASP.NET With C# (Revised Syllabus) [QP / April - 2014]
ASP.NET With C# (Revised Syllabus) [QP / April - 2014]ASP.NET With C# (Revised Syllabus) [QP / April - 2014]
ASP.NET With C# (Revised Syllabus) [QP / April - 2014]
Β 
[Question Paper] Database Management Systems (Revised Course) [September / 2013]
[Question Paper] Database Management Systems (Revised Course) [September / 2013][Question Paper] Database Management Systems (Revised Course) [September / 2013]
[Question Paper] Database Management Systems (Revised Course) [September / 2013]
Β 
[Question Paper] Computer Graphics (Revised Course) [April / 2014]
[Question Paper] Computer Graphics (Revised Course) [April / 2014][Question Paper] Computer Graphics (Revised Course) [April / 2014]
[Question Paper] Computer Graphics (Revised Course) [April / 2014]
Β 

Similar to (Ds+alg) 5

chapter3part1.ppt
chapter3part1.pptchapter3part1.ppt
chapter3part1.pptssuser99ca78
Β 
Survey of Graph Indexing
Survey of Graph IndexingSurvey of Graph Indexing
Survey of Graph IndexingKisung Kim
Β 
Lgm saarbrucken
Lgm saarbruckenLgm saarbrucken
Lgm saarbruckenYasuo Tabei
Β 
Generalized Notions of Data Depth
Generalized Notions of Data DepthGeneralized Notions of Data Depth
Generalized Notions of Data DepthMukund Raj
Β 
Geographic Information Systems (May - 2018) [IDOL - Old Course | Question Paper]
Geographic Information Systems (May - 2018) [IDOL - Old Course | Question Paper]Geographic Information Systems (May - 2018) [IDOL - Old Course | Question Paper]
Geographic Information Systems (May - 2018) [IDOL - Old Course | Question Paper]Mumbai B.Sc.IT Study
Β 
Lect12 graph mining
Lect12 graph miningLect12 graph mining
Lect12 graph miningHouw Liong The
Β 
Riya Bepari_34700122020_Artificial Intelligence_PEC-IT501B.pptx
Riya Bepari_34700122020_Artificial Intelligence_PEC-IT501B.pptxRiya Bepari_34700122020_Artificial Intelligence_PEC-IT501B.pptx
Riya Bepari_34700122020_Artificial Intelligence_PEC-IT501B.pptxRIYABEPARI
Β 
Data Structures and Algorithm Analysis1. How much memory w.docx
Data Structures and Algorithm Analysis1. How much memory w.docxData Structures and Algorithm Analysis1. How much memory w.docx
Data Structures and Algorithm Analysis1. How much memory w.docxrandyburney60861
Β 
Data Structures and Algorithm AnalysisSpring 2020 Post Midterm E
Data Structures and Algorithm AnalysisSpring 2020 Post Midterm EData Structures and Algorithm AnalysisSpring 2020 Post Midterm E
Data Structures and Algorithm AnalysisSpring 2020 Post Midterm Ejeniihykdevara
Β 
gSpan algorithm
 gSpan algorithm gSpan algorithm
gSpan algorithmSadik Mussah
Β 
gSpan algorithm
gSpan algorithmgSpan algorithm
gSpan algorithmSadik Mussah
Β 
Start From A MapReduce Graph Pattern-recognize Algorithm
Start From A MapReduce Graph Pattern-recognize AlgorithmStart From A MapReduce Graph Pattern-recognize Algorithm
Start From A MapReduce Graph Pattern-recognize AlgorithmYu Liu
Β 
Pydata talk
Pydata talkPydata talk
Pydata talkTuri, Inc.
Β 
LAB7_FILS_DSA_graphs_datastructures.pptx
LAB7_FILS_DSA_graphs_datastructures.pptxLAB7_FILS_DSA_graphs_datastructures.pptx
LAB7_FILS_DSA_graphs_datastructures.pptxionutionescuionut
Β 
SubGraD- An Approach for Subgraph Detection
SubGraD- An Approach for Subgraph Detection SubGraD- An Approach for Subgraph Detection
SubGraD- An Approach for Subgraph Detection cscpconf
Β 
Graph Analytics with Greenplum and Apache MADlib
Graph Analytics with Greenplum and Apache MADlibGraph Analytics with Greenplum and Apache MADlib
Graph Analytics with Greenplum and Apache MADlibVMware Tanzu
Β 
A Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS TreeA Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS TreeIOSR Journals
Β 
Graph mining ppt
Graph mining pptGraph mining ppt
Graph mining ppttallalfarooq1
Β 
AI3391 ARTIFICIAL INTELLIGENCE Session 7 Uniformed search strategies.pptx
AI3391 ARTIFICIAL INTELLIGENCE Session 7 Uniformed search strategies.pptxAI3391 ARTIFICIAL INTELLIGENCE Session 7 Uniformed search strategies.pptx
AI3391 ARTIFICIAL INTELLIGENCE Session 7 Uniformed search strategies.pptxAsst.prof M.Gokilavani
Β 

Similar to (Ds+alg) 5 (20)

chapter3part1.ppt
chapter3part1.pptchapter3part1.ppt
chapter3part1.ppt
Β 
Survey of Graph Indexing
Survey of Graph IndexingSurvey of Graph Indexing
Survey of Graph Indexing
Β 
Lgm saarbrucken
Lgm saarbruckenLgm saarbrucken
Lgm saarbrucken
Β 
Generalized Notions of Data Depth
Generalized Notions of Data DepthGeneralized Notions of Data Depth
Generalized Notions of Data Depth
Β 
Geographic Information Systems (May - 2018) [IDOL - Old Course | Question Paper]
Geographic Information Systems (May - 2018) [IDOL - Old Course | Question Paper]Geographic Information Systems (May - 2018) [IDOL - Old Course | Question Paper]
Geographic Information Systems (May - 2018) [IDOL - Old Course | Question Paper]
Β 
Lect12 graph mining
Lect12 graph miningLect12 graph mining
Lect12 graph mining
Β 
Riya Bepari_34700122020_Artificial Intelligence_PEC-IT501B.pptx
Riya Bepari_34700122020_Artificial Intelligence_PEC-IT501B.pptxRiya Bepari_34700122020_Artificial Intelligence_PEC-IT501B.pptx
Riya Bepari_34700122020_Artificial Intelligence_PEC-IT501B.pptx
Β 
Data Structures and Algorithm Analysis1. How much memory w.docx
Data Structures and Algorithm Analysis1. How much memory w.docxData Structures and Algorithm Analysis1. How much memory w.docx
Data Structures and Algorithm Analysis1. How much memory w.docx
Β 
Data Structures and Algorithm AnalysisSpring 2020 Post Midterm E
Data Structures and Algorithm AnalysisSpring 2020 Post Midterm EData Structures and Algorithm AnalysisSpring 2020 Post Midterm E
Data Structures and Algorithm AnalysisSpring 2020 Post Midterm E
Β 
gSpan algorithm
 gSpan algorithm gSpan algorithm
gSpan algorithm
Β 
gSpan algorithm
gSpan algorithmgSpan algorithm
gSpan algorithm
Β 
Big datacourse
Big datacourseBig datacourse
Big datacourse
Β 
Start From A MapReduce Graph Pattern-recognize Algorithm
Start From A MapReduce Graph Pattern-recognize AlgorithmStart From A MapReduce Graph Pattern-recognize Algorithm
Start From A MapReduce Graph Pattern-recognize Algorithm
Β 
Pydata talk
Pydata talkPydata talk
Pydata talk
Β 
LAB7_FILS_DSA_graphs_datastructures.pptx
LAB7_FILS_DSA_graphs_datastructures.pptxLAB7_FILS_DSA_graphs_datastructures.pptx
LAB7_FILS_DSA_graphs_datastructures.pptx
Β 
SubGraD- An Approach for Subgraph Detection
SubGraD- An Approach for Subgraph Detection SubGraD- An Approach for Subgraph Detection
SubGraD- An Approach for Subgraph Detection
Β 
Graph Analytics with Greenplum and Apache MADlib
Graph Analytics with Greenplum and Apache MADlibGraph Analytics with Greenplum and Apache MADlib
Graph Analytics with Greenplum and Apache MADlib
Β 
A Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS TreeA Hybrid Technique for Shape Matching Based on chain code and DFS Tree
A Hybrid Technique for Shape Matching Based on chain code and DFS Tree
Β 
Graph mining ppt
Graph mining pptGraph mining ppt
Graph mining ppt
Β 
AI3391 ARTIFICIAL INTELLIGENCE Session 7 Uniformed search strategies.pptx
AI3391 ARTIFICIAL INTELLIGENCE Session 7 Uniformed search strategies.pptxAI3391 ARTIFICIAL INTELLIGENCE Session 7 Uniformed search strategies.pptx
AI3391 ARTIFICIAL INTELLIGENCE Session 7 Uniformed search strategies.pptx
Β 

More from MirOmranudinAbhar (20)

Dld 2
Dld 2Dld 2
Dld 2
Β 
Dld 3
Dld 3Dld 3
Dld 3
Β 
Dld 4
Dld 4Dld 4
Dld 4
Β 
Dld 1
Dld 1Dld 1
Dld 1
Β 
java-13
java-13java-13
java-13
Β 
java-12
java-12java-12
java-12
Β 
java-11
java-11java-11
java-11
Β 
java-10
java-10java-10
java-10
Β 
java-9
java-9java-9
java-9
Β 
java-8
java-8java-8
java-8
Β 
java-7
java-7java-7
java-7
Β 
java-6
java-6java-6
java-6
Β 
java-5
java-5java-5
java-5
Β 
java-4
java-4java-4
java-4
Β 
java-3
java-3java-3
java-3
Β 
java-2
java-2java-2
java-2
Β 
java-1
java-1java-1
java-1
Β 
Software-0
Software-0Software-0
Software-0
Β 
Net 1
Net 1Net 1
Net 1
Β 
Net 2
Net 2Net 2
Net 2
Β 

Recently uploaded

chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
Β 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - InfographicHr365.us smith
Β 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
Β 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
Β 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
Β 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
Β 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
Β 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...aditisharan08
Β 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
Β 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
Β 
(Genuine) Escort Service Lucknow | Starting β‚Ή,5K To @25k with A/C πŸ§‘πŸ½β€β€οΈβ€πŸ§‘πŸ» 89...
(Genuine) Escort Service Lucknow | Starting β‚Ή,5K To @25k with A/C πŸ§‘πŸ½β€β€οΈβ€πŸ§‘πŸ» 89...(Genuine) Escort Service Lucknow | Starting β‚Ή,5K To @25k with A/C πŸ§‘πŸ½β€β€οΈβ€πŸ§‘πŸ» 89...
(Genuine) Escort Service Lucknow | Starting β‚Ή,5K To @25k with A/C πŸ§‘πŸ½β€β€οΈβ€πŸ§‘πŸ» 89...gurkirankumar98700
Β 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto GonzΓ‘lez Trastoy
Β 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
Β 
cybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningcybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningVitsRangannavar
Β 
Russian Call Girls in Karol Bagh Aasnvi ➑️ 8264348440 πŸ’‹πŸ“ž Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➑️ 8264348440 πŸ’‹πŸ“ž Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➑️ 8264348440 πŸ’‹πŸ“ž Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➑️ 8264348440 πŸ’‹πŸ“ž Independent Escort S...soniya singh
Β 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
Β 
XpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsXpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsMehedi Hasan Shohan
Β 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
Β 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number SystemsJheuzeDellosa
Β 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxTier1 app
Β 

Recently uploaded (20)

chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
Β 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - Infographic
Β 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Β 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
Β 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Β 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
Β 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Β 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...
Β 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Β 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Β 
(Genuine) Escort Service Lucknow | Starting β‚Ή,5K To @25k with A/C πŸ§‘πŸ½β€β€οΈβ€πŸ§‘πŸ» 89...
(Genuine) Escort Service Lucknow | Starting β‚Ή,5K To @25k with A/C πŸ§‘πŸ½β€β€οΈβ€πŸ§‘πŸ» 89...(Genuine) Escort Service Lucknow | Starting β‚Ή,5K To @25k with A/C πŸ§‘πŸ½β€β€οΈβ€πŸ§‘πŸ» 89...
(Genuine) Escort Service Lucknow | Starting β‚Ή,5K To @25k with A/C πŸ§‘πŸ½β€β€οΈβ€πŸ§‘πŸ» 89...
Β 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Β 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
Β 
cybersecurity notes for mca students for learning
cybersecurity notes for mca students for learningcybersecurity notes for mca students for learning
cybersecurity notes for mca students for learning
Β 
Russian Call Girls in Karol Bagh Aasnvi ➑️ 8264348440 πŸ’‹πŸ“ž Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➑️ 8264348440 πŸ’‹πŸ“ž Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➑️ 8264348440 πŸ’‹πŸ“ž Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➑️ 8264348440 πŸ’‹πŸ“ž Independent Escort S...
Β 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
Β 
XpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software SolutionsXpertSolvers: Your Partner in Building Innovative Software Solutions
XpertSolvers: Your Partner in Building Innovative Software Solutions
Β 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
Β 
What is Binary Language? Computer Number Systems
What is Binary Language?  Computer Number SystemsWhat is Binary Language?  Computer Number Systems
What is Binary Language? Computer Number Systems
Β 
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptxKnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
KnowAPIs-UnknownPerf-jaxMainz-2024 (1).pptx
Β 

(Ds+alg) 5