What is the fastest Dijkstra implementation you know (in C++)?

前端 未结 5 591
野的像风
野的像风 2020-12-24 15:50

I did recently attach the 3rd version of Dijkstra algorithm for shortest path of single source into my project.

I realize that there are many different implementati

5条回答
  •  既然无缘
    2020-12-24 16:12

    The best implementations known for road networks (>1 million nodes) have query times expressed in microseconds. See for more details the 9th DIMACS Implementation Challenge(2006). Note that these are not simply Dijkstra, of course, as the whole point was to get results faster.

提交回复
热议问题