Previous slide
Next slide
Toggle fullscreen
Open presenter view
CE205 Data Structures Week-5
CE205 Data Structures
Week-5
Graph Data Structure and Traversals
Download
PDF
,
DOCX
,
SLIDE
,
PPTX
CE205 Data Structures Week-5
Outline
Introduction to Graphs
Graph Representations
Graph Traversal
Water Jug Problem
CE205 Data Structures Week-5
Introduction to Graphs
Vertex
Edge
CE205 Data Structures Week-5
Introduction to Graphs
Undirected Graph
Directed Graph
Mixed Graph
CE205 Data Structures Week-5
Introduction to Graphs
End Vertices or Endpoints
Origin
Destination
CE205 Data Structures Week-5
Introduction to Graphs
Adjacent
Incident
CE205 Data Structures Week-5
Introduction to Graphs
Outgoing Edge
Incoming Edge
CE205 Data Structures Week-5
Introduction to Graphs
Degree
Indegree
Outdegree
CE205 Data Structures Week-5
Introduction to Graphs
Parallel edges or Multiple edges
Self-loop
Simple Graph
Path
CE205 Data Structures Week-5
Introduction to Graphs
Btech Smart Class
http://www.btechsmartclass.com/data_structures/introduction-to-graphs.html
CE205 Data Structures Week-5
Graph Representations
Adjacency Matrix
Incidence Matrix
Adjacency List
Btech Smart Class
http://www.btechsmartclass.com/data_structures/graph-representations.html
CE205 Data Structures Week-5
Graph Traversal - DFS
Depth-First Search (DFS)
Iterative Deepening Search(IDS) or Iterative Deepening Depth First Search(IDDFS)
Btech Smart Class
http://www.btechsmartclass.com/data_structures/graph-traversal-dfs.html
CE205 Data Structures Week-5
Graph Traversal - BFS
Breadth-First Search (BFS)
Btech Smart Class
http://www.btechsmartclass.com/data_structures/graph-traversal-bfs.html
CE205 Data Structures Week-5
Graph Traversal - DLS
Depth-limited Search
Educba
https://www.educba.com/depth-limited-search/
CE205 Data Structures Week-5
Graph Traversal
Uniform Cost Search
Geeks for Geeks
https://www.geeksforgeeks.org/uniform-cost-search-dijkstra-for-large-graphs/
CE205 Data Structures Week-5
Graph Traversal
Bidirectional Search
Geeks for Geeks
https://www.geeksforgeeks.org/bidirectional-search/
CE205 Data Structures Week-5
Graph Traversal
Water Jug Problem
Geeks for Geeks
https://www.geeksforgeeks.org/water-jug-problem-using-bfs/
Tamu Edu
https://www.math.tamu.edu/~dallen/hollywood/diehard/diehard.htm
Udel Edu
https://www.eecis.udel.edu/~mccoy/courses/cisc4-681.10f/lec-materials/handouts/search-water-jug-handout.pdf
CE205 Data Structures Week-5