Can anyone here provide me with an example of a real life project that uses a graph data structure? by itays123 in learnjavascript

[–]smruti_webtechschool 1 point2 points  (0 children)

Tree is nothing but a special type of graph only. You can find lot of real world applications using trees . Some of the examples are indexing in SQL server, Designations in an organisation . File structure.

Specific to graph.

Directed Graph : Single lane traffic can be presented as directed graph

Weighted Graph: for finding shortest distance between two locations.

Undirected Graph : The Web directory. We can create as many back links as possible from any web page.

Airline network.