如何使用OGDF库在非循环有向图中找到最长路径?

时间:2012-08-02 22:17:14

标签: graph shortest-path longest-path

我是OGDF库的新手,需要在非循环有向图中找到最长的路径(我想使用内置函数的OGDF)。 我知道,有可能找到使用最短路径算法的最长路径,边缘负权重,但也找不到合适的功能。 OGDF有特定功能吗? 如果是,我该如何使用它?

1 个答案:

答案 0 :(得分:0)

在OGDF中,您可以使用s找到节点ShortestPathWithBFM与其他节点之间的最短路径。应使用EdgeArray<int>将边的长度(权重)传递给函数。以下是源代码中的类定义:

namespace ogdf {

class OGDF_EXPORT ShortestPathWithBFM : public ShortestPathModule
{
public:
 ShortestPathWithBFM() { }

 // computes shortest paths
 // Precond.:
 //
 // returns false iff the graph contains a negative cycle
 bool call(
 const Graph          &G,      // directed graph
 const node           s,       // source node
 const EdgeArray<int> &length, // length of an edge
 NodeArray<int>       &d,      // contains shortest path distances after call
 NodeArray<edge>      &pi
 );


};


} // end namespace ogdf

如果以负数传递长度,算法将计算最长路径。 有关详细信息,请参阅:http://www.ogdf.net/doc-ogdf/classogdf_1_1_shortest_path_with_b_f_m.html