What is Graph Data Structure
In a Graph, data is interconnected to each other. Each data point is called a node and the lines connecting these nodes are called vertices of the graph.
Applications of Graph Data Structure
The primary application of Graphs comes in any application where we have interconnected data.
- Social Media: Friends, followers & subscribers are all inter-connected.
- Maps/Routing: Routes on maps can be decided using Graph Data structure.
Add Comment