SlideShare a Scribd company logo
1 of 28
GRAPH
Types of Graph
Terminology
Storage Structure
1
Graph
2
A graph is a collection of nodes (or vertices, singular is
vertex) and edges (or arcs)
 Each node contains an element
 Each edge connects two nodes together (or
possibly the same node to itself) and may
contain an edge attribute A
B
G
E
F
D
C
Formal definition of graph
3
A graph G is defined as follows:
G=(V,E)
V(G): a finite, nonempty set of vertices
E(G): a set of edges (pairs of vertices)
Types of graph
Directed graph (digraph)
Undirected graph (graph)
4
Undirected graph
5
 An undirected graph is one in
which the edges do not have a
direction
 ‘graph’ denotes undirected graph.
 Undirected graph:
 ( v1, v2 ) in E is un-ordered.
 (v1,v2) and (v2, v1) represent
the same edge.
G1 = ( 4, 6)
V(G1) = { 0, 1, 2 , 3 }
E(G1) = { (0,1), (0,2), (0,3
(1,2), (1,3), (2,3) }
 Directed graph is one in which the
edges have a direction
 Also called as ‘digraph’
 Directed graph:
 < v1, v2 > in E is ordered.
 <V1,v2> and <v2, v1> represent
the two different edges.
6
G3 = (3, 3)
V(G3) = { 0,1,2 }
E(G3) = { <0,1> , <1,0> , <1,2>
Directed graph
7
A complete graph is a graph that has the maximum
number of edges .
 for undirected graph with n vertices, the
maximum number of edges is n(n-1)/2
 for directed graph with n vertices, the
maximum number of edges is n(n-1)
Complete graph
8
No.of edges = n(n-1)/2
= 4*3/2
= 12/2
= 6
No.of edges = n(n-1)/2
= 7*6/2
= 42/2
= 21
No.of edges = n(n-1
= 3*2
= 6
Complete graph
Adjacent and Incident
9
 If (v0, v1) is an edge in an undirected graph,
– v0 and v1 are adjacent
– The edge (v0, v1) is incident on vertices v0 and v1
 If <v0, v1> is an edge in a directed graph
– v0 is adjacent to v1, and v1 is adjacent from v0
– The edge <v0, v1> is incident on vertices v0 and v1
Sub- graph
A sub-graph of G is a graph G’ such that
 V(G’) is a subset of V(G)
 E(G’) is a subset of E(G)
10
Path
11
 A path is a list of edges such that each node is the
predecessor of the next node in the list
 A path from vertex vp to vertex vq in a graph G, is a
sequence of vertices, vp, vi1, vi2, ..., vin, vq, such that
(vp, vi1), (vi1, vi2), ..., (vin, vq) are edges in an
undirected graph
 The length of a path is the number of edges on it
 A simple path is a path in which all vertices,
except possibly the first and the last, are distinct
Cycle
12
A cycle is a path whose first and last nodes are the
same
- A cyclic graph contains at least one cycle
- An acyclic graph does not contain any cycles
cyclic graph acyclic graph
Connected component
 In an undirected graph G, two vertices, v0 and v1,
are connected if there is a path in G from v0 to v1
 An undirected graph is connected if, for every pair
of distinct vertices vi, vj, there is a path from vi to vj
 A connected component of an undirected graph is a
maximal connected sub-graph.
13
Strongly connected
 A directed graph is strongly connected if there is a
directed path from vi to vj and also from vj to vi.
 A strongly connected component is a maximal sub-
graph that is strongly connected
14
Tree
A tree is a graph that is
 connected
 acyclic.
15
Degree
16
 The degree of a vertex is the number of edges incident
to that vertex
 For directed graph,
 the in-degree of a vertex v is the number of
edges that have v as the head
 the out-degree of a vertex v is the number of
edges that have v as the tail
 if di is the degree of a vertex i in a graph G with
n vertices and e edges, the number of edges is
2/)(
1
0



n
ide
Degree - graph
17
Degree - digraph
18
Graph Representation
19
 Adjacency Matrix
 Adjacency Lists
Adjacency matrix
20
 Let G=(V,E) be a graph with n vertices.
 The adjacency matrix of G is a two-dimensional
n by n array, say adj_mat
 If the edge (vi, vj) is in E(G), adj_mat[i][j]=1
 If there is no edge in E(G), adj_mat[i][j]=0
 The adjacency matrix for an undirected graph is
symmetric
 the adjacency matrix for a digraph need not be
symmetric
Adjacency matrix - graph
21
0
1
1
1
1
0
1
1
1
1
0
1
1
1
1
0












0 1 2 3
0
1
2
3
0 1 2 3 4 5 6 7
0
1
2
3
4
5
6
7
Adjacency matrix - digraph
22
0
1
0
1
0
0
0
1
0










0 1 2
0
1
2
23
 From the adjacency matrix, to determine the connection
of vertices is easy
 The degree of a vertex is
 For a digraph,
 the row sum is the out_degree
 the column sum is the in_degree
Merits of Adjacency Matrix
adj mat i j
j
n
_ [ ][ ]


0
1
ind vi A j i
j
n
( ) [ , ]



0
1
outd vi A i j
j
n
( ) [ , ]



0
1
Demerits of adjacency matrix
24
 Storage complexity: O(|V|2)
 Difficult to insert and delete nodes.
Adjacency list
25
 To overcome the problem arise in the adjacency
matrix, linked list can be used
 The adjacency list contains two lists
1. node list
2. edge list
Adjacency list – graph
26
Adjacency list - digraph
27
Adjacency list Inverse Adjacency
list
Merits of adjacency list
28
 degree of a vertex in an undirected graph
 number of nodes in adjacency list
 out-degree of a vertex in a directed graph
 number of nodes in its adjacency list
 in-degree of a vertex in a directed graph
 traverse the whole data structure
 Simple way to find out in-degree of vertex in a directed
graph
 Represent the graph in inverse adjacency list

More Related Content

What's hot

Threaded Binary Tree
Threaded Binary TreeThreaded Binary Tree
Threaded Binary Treekhabbab_h
 
trees in data structure
trees in data structure trees in data structure
trees in data structure shameen khan
 
Binary Search Tree
Binary Search TreeBinary Search Tree
Binary Search Treesagar yadav
 
Adjacency list
Adjacency listAdjacency list
Adjacency listStefi Yu
 
Data Structures - Lecture 7 [Linked List]
Data Structures - Lecture 7 [Linked List]Data Structures - Lecture 7 [Linked List]
Data Structures - Lecture 7 [Linked List]Muhammad Hammad Waseem
 
Sparse matrix and its representation data structure
Sparse matrix and its representation data structureSparse matrix and its representation data structure
Sparse matrix and its representation data structureVardhil Patel
 
Asymptotic Notations
Asymptotic NotationsAsymptotic Notations
Asymptotic NotationsRishabh Soni
 
Hashing Technique In Data Structures
Hashing Technique In Data StructuresHashing Technique In Data Structures
Hashing Technique In Data StructuresSHAKOOR AB
 
Topological Sorting
Topological SortingTopological Sorting
Topological SortingShahDhruv21
 
Graph representation
Graph representationGraph representation
Graph representationTech_MX
 

What's hot (20)

stack & queue
stack & queuestack & queue
stack & queue
 
Threaded Binary Tree
Threaded Binary TreeThreaded Binary Tree
Threaded Binary Tree
 
Graph traversals in Data Structures
Graph traversals in Data StructuresGraph traversals in Data Structures
Graph traversals in Data Structures
 
Linked list
Linked listLinked list
Linked list
 
trees in data structure
trees in data structure trees in data structure
trees in data structure
 
Binary Search Tree
Binary Search TreeBinary Search Tree
Binary Search Tree
 
Tree - Data Structure
Tree - Data StructureTree - Data Structure
Tree - Data Structure
 
Adjacency list
Adjacency listAdjacency list
Adjacency list
 
Data Structures - Lecture 7 [Linked List]
Data Structures - Lecture 7 [Linked List]Data Structures - Lecture 7 [Linked List]
Data Structures - Lecture 7 [Linked List]
 
Sparse matrix and its representation data structure
Sparse matrix and its representation data structureSparse matrix and its representation data structure
Sparse matrix and its representation data structure
 
Linked list
Linked listLinked list
Linked list
 
Tree in data structure
Tree in data structureTree in data structure
Tree in data structure
 
Asymptotic Notations
Asymptotic NotationsAsymptotic Notations
Asymptotic Notations
 
Hashing Technique In Data Structures
Hashing Technique In Data StructuresHashing Technique In Data Structures
Hashing Technique In Data Structures
 
Tree traversal techniques
Tree traversal techniquesTree traversal techniques
Tree traversal techniques
 
Hashing
HashingHashing
Hashing
 
Heaps
HeapsHeaps
Heaps
 
Topological Sorting
Topological SortingTopological Sorting
Topological Sorting
 
Graph representation
Graph representationGraph representation
Graph representation
 
sorting and its types
sorting and its typessorting and its types
sorting and its types
 

Viewers also liked

Graphs in Data Structure
 Graphs in Data Structure Graphs in Data Structure
Graphs in Data Structurehafsa komal
 
Graph data structure
Graph data structureGraph data structure
Graph data structureTech_MX
 
Graphs in data structure
Graphs in data structureGraphs in data structure
Graphs in data structurehamza javed
 
Data structure computer graphs
Data structure computer graphsData structure computer graphs
Data structure computer graphsKumar
 
Simple graph types
Simple graph typesSimple graph types
Simple graph typesMahi Syama
 
Types of graphs
Types of graphsTypes of graphs
Types of graphsbweldon
 
DATA STRUCTURES
DATA STRUCTURESDATA STRUCTURES
DATA STRUCTURESbca2010
 
Loom & Functional Graphs in Clojure @ LambdaConf 2015
Loom & Functional Graphs in Clojure @ LambdaConf 2015Loom & Functional Graphs in Clojure @ LambdaConf 2015
Loom & Functional Graphs in Clojure @ LambdaConf 2015Aysylu Greenberg
 
Path cycle part1
Path cycle part1Path cycle part1
Path cycle part1guestb63941
 
Choosing Graph and Chart types
Choosing Graph and Chart typesChoosing Graph and Chart types
Choosing Graph and Chart typesiteclearners
 
Intro to statistics
Intro to statisticsIntro to statistics
Intro to statisticsUlster BOCES
 
2014 welcome to math 6. t mc comb
2014 welcome to math 6. t mc comb2014 welcome to math 6. t mc comb
2014 welcome to math 6. t mc combtamcc
 
Javier Garcia - Verdugo Sanchez - Six Sigma Training - W2 Non Normal Data
Javier Garcia - Verdugo Sanchez - Six Sigma Training - W2 Non Normal DataJavier Garcia - Verdugo Sanchez - Six Sigma Training - W2 Non Normal Data
Javier Garcia - Verdugo Sanchez - Six Sigma Training - W2 Non Normal DataJ. García - Verdugo
 

Viewers also liked (20)

Lecture8 data structure(graph)
Lecture8 data structure(graph)Lecture8 data structure(graph)
Lecture8 data structure(graph)
 
Graphs in Data Structure
 Graphs in Data Structure Graphs in Data Structure
Graphs in Data Structure
 
Graph data structure
Graph data structureGraph data structure
Graph data structure
 
Graphs in data structure
Graphs in data structureGraphs in data structure
Graphs in data structure
 
Graph data structure
Graph  data structureGraph  data structure
Graph data structure
 
Data structure computer graphs
Data structure computer graphsData structure computer graphs
Data structure computer graphs
 
Data Structures - Lecture 10 [Graphs]
Data Structures - Lecture 10 [Graphs]Data Structures - Lecture 10 [Graphs]
Data Structures - Lecture 10 [Graphs]
 
Simple graph types
Simple graph typesSimple graph types
Simple graph types
 
Types of graphs
Types of graphsTypes of graphs
Types of graphs
 
Graphs ppt
Graphs pptGraphs ppt
Graphs ppt
 
DATA STRUCTURES
DATA STRUCTURESDATA STRUCTURES
DATA STRUCTURES
 
Loom & Functional Graphs in Clojure @ LambdaConf 2015
Loom & Functional Graphs in Clojure @ LambdaConf 2015Loom & Functional Graphs in Clojure @ LambdaConf 2015
Loom & Functional Graphs in Clojure @ LambdaConf 2015
 
Path cycle part1
Path cycle part1Path cycle part1
Path cycle part1
 
Statistics: Graph(grouped data)
Statistics: Graph(grouped data)Statistics: Graph(grouped data)
Statistics: Graph(grouped data)
 
Chp 4
Chp 4Chp 4
Chp 4
 
Choosing Graph and Chart types
Choosing Graph and Chart typesChoosing Graph and Chart types
Choosing Graph and Chart types
 
Intro to statistics
Intro to statisticsIntro to statistics
Intro to statistics
 
2014 welcome to math 6. t mc comb
2014 welcome to math 6. t mc comb2014 welcome to math 6. t mc comb
2014 welcome to math 6. t mc comb
 
Percentage
PercentagePercentage
Percentage
 
Javier Garcia - Verdugo Sanchez - Six Sigma Training - W2 Non Normal Data
Javier Garcia - Verdugo Sanchez - Six Sigma Training - W2 Non Normal DataJavier Garcia - Verdugo Sanchez - Six Sigma Training - W2 Non Normal Data
Javier Garcia - Verdugo Sanchez - Six Sigma Training - W2 Non Normal Data
 

Similar to Graph Data Structure Types

Similar to Graph Data Structure Types (20)

graph.pptx
graph.pptxgraph.pptx
graph.pptx
 
09_DS_MCA_Graphs.pdf
09_DS_MCA_Graphs.pdf09_DS_MCA_Graphs.pdf
09_DS_MCA_Graphs.pdf
 
Graphs
GraphsGraphs
Graphs
 
Graph-theory.ppt
Graph-theory.pptGraph-theory.ppt
Graph-theory.ppt
 
Graph.ppt
Graph.pptGraph.ppt
Graph.ppt
 
Fallsem2015 16 cp4194-13-oct-2015_rm01_graphs
Fallsem2015 16 cp4194-13-oct-2015_rm01_graphsFallsem2015 16 cp4194-13-oct-2015_rm01_graphs
Fallsem2015 16 cp4194-13-oct-2015_rm01_graphs
 
chapter6.PPT
chapter6.PPTchapter6.PPT
chapter6.PPT
 
Dsa.PPT
Dsa.PPTDsa.PPT
Dsa.PPT
 
Graph representation
Graph representationGraph representation
Graph representation
 
Graphs.pdf
Graphs.pdfGraphs.pdf
Graphs.pdf
 
Chapter 1
Chapter   1Chapter   1
Chapter 1
 
Elements of Graph Theory for IS.pptx
Elements of Graph Theory for IS.pptxElements of Graph Theory for IS.pptx
Elements of Graph Theory for IS.pptx
 
Graph terminologies & special type graphs
Graph terminologies & special type graphsGraph terminologies & special type graphs
Graph terminologies & special type graphs
 
Graph
GraphGraph
Graph
 
Graph theory
Graph theoryGraph theory
Graph theory
 
DATA STRUCTURES unit 4.pptx
DATA STRUCTURES unit 4.pptxDATA STRUCTURES unit 4.pptx
DATA STRUCTURES unit 4.pptx
 
Graphs
GraphsGraphs
Graphs
 
Ass. (3)graph d.m
Ass. (3)graph d.mAss. (3)graph d.m
Ass. (3)graph d.m
 
Graph in Discrete mathemaetics.pptx
Graph in Discrete mathemaetics.pptxGraph in Discrete mathemaetics.pptx
Graph in Discrete mathemaetics.pptx
 
Chap 6 Graph.ppt
Chap 6 Graph.pptChap 6 Graph.ppt
Chap 6 Graph.ppt
 

More from Madhu Bala

Internet of Things (IoT)
Internet of Things (IoT)Internet of Things (IoT)
Internet of Things (IoT)Madhu Bala
 
Operating system
Operating systemOperating system
Operating systemMadhu Bala
 
Greedy Algorithm - Knapsack Problem
Greedy Algorithm - Knapsack ProblemGreedy Algorithm - Knapsack Problem
Greedy Algorithm - Knapsack ProblemMadhu Bala
 
GRAPH APPLICATION - MINIMUM SPANNING TREE (MST)
GRAPH APPLICATION - MINIMUM SPANNING TREE (MST)GRAPH APPLICATION - MINIMUM SPANNING TREE (MST)
GRAPH APPLICATION - MINIMUM SPANNING TREE (MST)Madhu Bala
 
Divide and conquer - Quick sort
Divide and conquer - Quick sortDivide and conquer - Quick sort
Divide and conquer - Quick sortMadhu Bala
 
GPRS Technology
GPRS TechnologyGPRS Technology
GPRS TechnologyMadhu Bala
 
Algorithm - Introduction
Algorithm - IntroductionAlgorithm - Introduction
Algorithm - IntroductionMadhu Bala
 
Smoothing Filters in Spatial Domain
Smoothing Filters in Spatial DomainSmoothing Filters in Spatial Domain
Smoothing Filters in Spatial DomainMadhu Bala
 

More from Madhu Bala (10)

Internet of Things (IoT)
Internet of Things (IoT)Internet of Things (IoT)
Internet of Things (IoT)
 
Digital logic
Digital logicDigital logic
Digital logic
 
Operating system
Operating systemOperating system
Operating system
 
Greedy Algorithm - Knapsack Problem
Greedy Algorithm - Knapsack ProblemGreedy Algorithm - Knapsack Problem
Greedy Algorithm - Knapsack Problem
 
GRAPH APPLICATION - MINIMUM SPANNING TREE (MST)
GRAPH APPLICATION - MINIMUM SPANNING TREE (MST)GRAPH APPLICATION - MINIMUM SPANNING TREE (MST)
GRAPH APPLICATION - MINIMUM SPANNING TREE (MST)
 
Divide and conquer - Quick sort
Divide and conquer - Quick sortDivide and conquer - Quick sort
Divide and conquer - Quick sort
 
GPRS Technology
GPRS TechnologyGPRS Technology
GPRS Technology
 
Algorithm - Introduction
Algorithm - IntroductionAlgorithm - Introduction
Algorithm - Introduction
 
4G technology
4G technology4G technology
4G technology
 
Smoothing Filters in Spatial Domain
Smoothing Filters in Spatial DomainSmoothing Filters in Spatial Domain
Smoothing Filters in Spatial Domain
 

Recently uploaded

_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 

Recently uploaded (20)

_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 

Graph Data Structure Types

  • 2. Graph 2 A graph is a collection of nodes (or vertices, singular is vertex) and edges (or arcs)  Each node contains an element  Each edge connects two nodes together (or possibly the same node to itself) and may contain an edge attribute A B G E F D C
  • 3. Formal definition of graph 3 A graph G is defined as follows: G=(V,E) V(G): a finite, nonempty set of vertices E(G): a set of edges (pairs of vertices)
  • 4. Types of graph Directed graph (digraph) Undirected graph (graph) 4
  • 5. Undirected graph 5  An undirected graph is one in which the edges do not have a direction  ‘graph’ denotes undirected graph.  Undirected graph:  ( v1, v2 ) in E is un-ordered.  (v1,v2) and (v2, v1) represent the same edge. G1 = ( 4, 6) V(G1) = { 0, 1, 2 , 3 } E(G1) = { (0,1), (0,2), (0,3 (1,2), (1,3), (2,3) }
  • 6.  Directed graph is one in which the edges have a direction  Also called as ‘digraph’  Directed graph:  < v1, v2 > in E is ordered.  <V1,v2> and <v2, v1> represent the two different edges. 6 G3 = (3, 3) V(G3) = { 0,1,2 } E(G3) = { <0,1> , <1,0> , <1,2> Directed graph
  • 7. 7 A complete graph is a graph that has the maximum number of edges .  for undirected graph with n vertices, the maximum number of edges is n(n-1)/2  for directed graph with n vertices, the maximum number of edges is n(n-1) Complete graph
  • 8. 8 No.of edges = n(n-1)/2 = 4*3/2 = 12/2 = 6 No.of edges = n(n-1)/2 = 7*6/2 = 42/2 = 21 No.of edges = n(n-1 = 3*2 = 6 Complete graph
  • 9. Adjacent and Incident 9  If (v0, v1) is an edge in an undirected graph, – v0 and v1 are adjacent – The edge (v0, v1) is incident on vertices v0 and v1  If <v0, v1> is an edge in a directed graph – v0 is adjacent to v1, and v1 is adjacent from v0 – The edge <v0, v1> is incident on vertices v0 and v1
  • 10. Sub- graph A sub-graph of G is a graph G’ such that  V(G’) is a subset of V(G)  E(G’) is a subset of E(G) 10
  • 11. Path 11  A path is a list of edges such that each node is the predecessor of the next node in the list  A path from vertex vp to vertex vq in a graph G, is a sequence of vertices, vp, vi1, vi2, ..., vin, vq, such that (vp, vi1), (vi1, vi2), ..., (vin, vq) are edges in an undirected graph  The length of a path is the number of edges on it  A simple path is a path in which all vertices, except possibly the first and the last, are distinct
  • 12. Cycle 12 A cycle is a path whose first and last nodes are the same - A cyclic graph contains at least one cycle - An acyclic graph does not contain any cycles cyclic graph acyclic graph
  • 13. Connected component  In an undirected graph G, two vertices, v0 and v1, are connected if there is a path in G from v0 to v1  An undirected graph is connected if, for every pair of distinct vertices vi, vj, there is a path from vi to vj  A connected component of an undirected graph is a maximal connected sub-graph. 13
  • 14. Strongly connected  A directed graph is strongly connected if there is a directed path from vi to vj and also from vj to vi.  A strongly connected component is a maximal sub- graph that is strongly connected 14
  • 15. Tree A tree is a graph that is  connected  acyclic. 15
  • 16. Degree 16  The degree of a vertex is the number of edges incident to that vertex  For directed graph,  the in-degree of a vertex v is the number of edges that have v as the head  the out-degree of a vertex v is the number of edges that have v as the tail  if di is the degree of a vertex i in a graph G with n vertices and e edges, the number of edges is 2/)( 1 0    n ide
  • 19. Graph Representation 19  Adjacency Matrix  Adjacency Lists
  • 20. Adjacency matrix 20  Let G=(V,E) be a graph with n vertices.  The adjacency matrix of G is a two-dimensional n by n array, say adj_mat  If the edge (vi, vj) is in E(G), adj_mat[i][j]=1  If there is no edge in E(G), adj_mat[i][j]=0  The adjacency matrix for an undirected graph is symmetric  the adjacency matrix for a digraph need not be symmetric
  • 21. Adjacency matrix - graph 21 0 1 1 1 1 0 1 1 1 1 0 1 1 1 1 0             0 1 2 3 0 1 2 3 0 1 2 3 4 5 6 7 0 1 2 3 4 5 6 7
  • 22. Adjacency matrix - digraph 22 0 1 0 1 0 0 0 1 0           0 1 2 0 1 2
  • 23. 23  From the adjacency matrix, to determine the connection of vertices is easy  The degree of a vertex is  For a digraph,  the row sum is the out_degree  the column sum is the in_degree Merits of Adjacency Matrix adj mat i j j n _ [ ][ ]   0 1 ind vi A j i j n ( ) [ , ]    0 1 outd vi A i j j n ( ) [ , ]    0 1
  • 24. Demerits of adjacency matrix 24  Storage complexity: O(|V|2)  Difficult to insert and delete nodes.
  • 25. Adjacency list 25  To overcome the problem arise in the adjacency matrix, linked list can be used  The adjacency list contains two lists 1. node list 2. edge list
  • 26. Adjacency list – graph 26
  • 27. Adjacency list - digraph 27 Adjacency list Inverse Adjacency list
  • 28. Merits of adjacency list 28  degree of a vertex in an undirected graph  number of nodes in adjacency list  out-degree of a vertex in a directed graph  number of nodes in its adjacency list  in-degree of a vertex in a directed graph  traverse the whole data structure  Simple way to find out in-degree of vertex in a directed graph  Represent the graph in inverse adjacency list

Editor's Notes

  1. Inverse adjacenecy list – determine in-degree fast