Files
freeCodeCamp/guide/english/algorithms/graph-algorithms/index.md
Akshay Babbar eb09e4000f Removed wrongly mapped Graph link (#33210)
Removed link since it was not working and found it has no use here.
2019-04-01 23:44:00 +05:30

1.4 KiB

title
title
Graph algorithms

Graph algorithms

Graph algorithms are a set of instructions that traverse (visits nodes of a) graph.

Some algorithms are used to find a specific node or the path between two given nodes.

Why Graph Algorithms are Important

Graphs are very useful data structures which can be to model various problems. These algorithms have direct applications on Social Networking sites, State Machine modeling and many more.

Some Common Graph Algorithms

Some of the most common graph algorithms are:

Breadth First Search (BFS)

Depth First Search (DFS)

Dijkstra

Floyd-Warshall Algorithm

More Information