BellmanFord
Computes BellmanFord shortest path
BFS
Breadth-First Traversal (or Search)
Components
DFS
Depth-First Traversal (or Search)
Dijkstra
Computes Dijkstra's shortest path
FloydWarshall
Computes all-pairs shortest paths for a given graph using Floyd-Warshall algorithm. The ordered array of nodes and 2D Array of distances where each row and column index corresponds to a node's index in the nodes array.
Louvain
Louvain method for community detection
WedgeCount