I\'m looking to find a way to in real-time find the shortest path between nodes in a huge graph. It has hundreds of thousands of vertices and millions of edges. I know this
BFS in an undirected graph is only about 25 lines of code. You don't need a library. Check out the example code in the Wikipedia article.