Graph - Data Structure (Physical Representation)
Graph - Data Structure (Physical Representation)
About
A graph is represented generally in a physical data structure
Articles Related
Plugin combo - Component related: Nothing was found.
Two set
The graph is composed of two set.
and set of
egde represented for a :
Adjacency list
The graph is composed of set.
Adjacency matrix
Adjacency matrix is a matrix of adjacent vertices where the coordinates (x,y) may be stored in a set
| | a | b | c |
| a | 0 | 1 | 1 |
| b | 1 | 0 | 1 |
| c | 1 | 1 | 1 |
Documentation / Reference