xehoth / xehoth-blog-comment

0 stars 0 forks source link

SPFA 学习笔记 | xehoth #219

Open xehoth opened 7 years ago

xehoth commented 7 years ago

https://blog.xehoth.cc/SPFA/

SPFASPFA(Shortest Path Faster Algorithm)(队列优化)算法是求单源最短路径的一种算法,它还有一个重要的功能是判负环(在差分约束系统中会得以体现),在Bellman-ford算法的基础上加上一个队列优化,减少了冗余的松弛操作,是一种高效的最短路算法。