I have an un-directed graph that weight of each edge is 1. The graph may have cycles. I need to find a longest path in the graph (each node appear once). The length of the path is number of nodes. Any simple/effective solution? Thanks!
質問する
320 次
2 に答える
1
http://en.wikipedia.org/wiki/Longest_path_problemによると、最長パスを見つけることは NP 困難です。そのため、大きなインスタンスの問題を解決するのは難しいと考えられていますP = NP
。BFS
アルゴリズムが線形である最短経路を見つけるのとは対照的です。
于 2015-02-10T17:48:50.480 に答える