Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个节点图,我需要从节点 a 到节点 b。什么是从 A 点到 B 点的一个好的启发式函数(可以是伪代码或任何东西)。可用的信息是节点的邻接性和所有节点之间的距离。
如果您有所有节点之间的距离,那么这是您可以拥有的最佳启发式方法。
看看 Dijkstra 的算法
http://en.wikipedia.org/wiki/Dijkstra's_algorithm _