Efficiently finding the shortest path in large graphs

后端 未结 7 2038
一生所求
一生所求 2020-12-13 20:46

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

7条回答
  •  [愿得一人]
    2020-12-13 21:29

    For a graph that large (and with your performance constraints), you probably want the Boost Graph Library since it's written in C++. It has the Python bindings you are looking for.

提交回复
热议问题