- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正试图找到一种方法来解决 longest path problem对于具有以下特征的图:
过去两天我第一次看到了 Boost.Graph。它看起来非常复杂,我想确保在我更深入地研究文档以发现我实际上无法使用它之前,我可以用这个库解决我的问题。
那么我可以使用 Boost.Graph 来解决我的问题吗?它甚至可能是 NP-Complete 吗?即使我可以使用 Boost.Graph,是否有基于性能的更好替代方案?
最佳答案
下面是一些使用 boost 图库查找图中两个顶点之间最长(权重最大)路径的代码。检查图形中的循环,通过删除图形拷贝中的后边来删除这些循环。
此代码的重构和记录版本可从公共(public)化石存储库获得,网址为 https://chiselapp.com/user/ravenspoint/repository/longest_path/dir?ci=tip
#include <iostream>
#include <random>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/dijkstra_shortest_paths.hpp>
#include <boost/graph/bellman_ford_shortest_paths.hpp>
#include <boost/graph/topological_sort.hpp>
#include <boost/property_map/property_map.hpp>
#include <boost/graph/depth_first_search.hpp>
using namespace std;
using namespace boost;
class cVertex
{
};
class cEdge
{
public:
void Weight( int w )
{
myWeight = w;
}
int Weight()
{
return myWeight;
}
void negWeight()
{
myWeight = - myWeight;
}
int myWeight;
};
typedef adjacency_list<
vecS, vecS, directedS,
cVertex, cEdge > graph_t;
typedef graph_traits< graph_t >::vertex_iterator vit_t;
typedef graph_traits< graph_t >::edge_iterator eit_t;
typedef graph_traits< graph_t >::edge_descriptor ed_t;
graph_t theGraph;
class cPredecessorMap
{
public:
cPredecessorMap(graph_t& g )
: myGraph( g )
{
p.resize( num_vertices(myGraph) );
}
vector<int>::iterator
begin()
{
return p.begin();
}
vector<int>
Path( int start, int end )
{
vector<int> path ;
int next = end;
while ( next != start )
{
path.push_back( next );
next = p[ next ];
}
path.push_back( start );
// reverse into path from to
reverse(path.begin(),path.end());
return path;
}
private:
graph_t& myGraph;
vector<int> p;
};
void Add( int src, int dst, int weight )
{
theGraph[add_edge( src, dst, theGraph ).first].Weight( weight );
}
void Construct()
{
std::random_device rd;
std::mt19937_64 gen(rd());
std::uniform_int_distribution<int> dis(0,9);
for( int kvertex = 0; kvertex < 10; kvertex++ )
add_vertex( theGraph );
// connect successive vertices with random weights
for( int kvertex = 1; kvertex < 10; kvertex++ )
Add( kvertex-1, kvertex, dis( gen ) );
// connect random edges
for( int krandom = 0; krandom < 3; krandom++ )
{
int v1, v2;
do
{
v1 = dis(gen);
v2 = dis(gen);
}
while( v1 == v2 );
if( v1 > v2 )
{
int tmp;
tmp = v1;
v1 = v2;
v2 = tmp;
}
Add( dis(gen), dis(gen), dis( gen ));
}
}
void Construct2()
{
for( int kvertex = 0; kvertex < 3; kvertex++ )
add_vertex( theGraph );
Add( 0, 1, 1 );
Add( 0, 2, 2 );
Add( 1, 2, 3 );
}
void ConstructWithCycle()
{
for( int kvertex = 0; kvertex < 10; kvertex++ )
add_vertex( theGraph );
// connect successive vertices with random weights
for( int kvertex = 1; kvertex < 10; kvertex++ )
Add( kvertex-1, kvertex, 1 );
Add( 6, 4, 1 );
Add( 7, 3, 1 );
}
void DisplayEdges()
{
graph_traits<graph_t>::edge_iterator ei, ei_end;
for (boost::tie(ei, ei_end) = edges(theGraph); ei != ei_end; ++ei)
{
std::cout << "(" << source(*ei, theGraph)
<< "," << target(*ei, theGraph)
<< ", w= " << theGraph[ *ei ].Weight()
<< " )\n ";
}
std::cout << std::endl;
}
bool TopSort()
{
try
{
std::vector< int > c;
topological_sort(theGraph, std::back_inserter(c));
}
catch( not_a_dag )
{
cout << "not a dag\n";
return false;
}
cout << "top sort OK\n";
return true;
}
/* Find longest path through the graph
@param[in] g the graph
@param[in] start vertex
@param[in] end vertex
@param[out] path of vertices
@param[out] dist length of path
*/
void Longest(
graph_t& g,
int start,
int end,
vector<int>& path,
int& dist )
{
// create copy of graph with negative weights
graph_t negGraph = g;
graph_traits<graph_t>::edge_iterator ei, ei_end;
for (boost::tie(ei, ei_end) = edges(negGraph); ei != ei_end; ++ei)
{
negGraph[ *ei ].negWeight( );
}
// find shortest paths through negative weight graph
int N = num_vertices(negGraph);
cPredecessorMap pmap( theGraph );
vector<int> distance(N);
bellman_ford_shortest_paths(
negGraph,
N,
weight_map(get(&cEdge::myWeight, negGraph))
.predecessor_map(make_iterator_property_map(pmap.begin(), get(vertex_index, negGraph)))
.distance_map(&distance[0])
.root_vertex( start )
);
path = pmap.Path(start,end);
dist = - distance[ end ];
}
class dag_visitor:public default_dfs_visitor
{
public:
unsigned int * src;
unsigned int * dst;
template < typename Edge, typename Graph >
void back_edge( Edge e, Graph& g)
{
*src = source( e, g );
*dst = target( e, g );
throw runtime_error("cyclic");
}
};
void ConvertToDAG( graph_t& g)
{
dag_visitor vis;
unsigned int src, dst;
vis.src = &src;
vis.dst = &dst;
bool cyclic = true;
while( cyclic )
{
try
{
depth_first_search(g, visitor(vis));
cyclic = false;
}
catch( runtime_error& e )
{
cyclic = true;
cout << "removing " << src << " -> " << dst << endl;
remove_edge( src, dst, g );
}
}
}
int main()
{
ConstructWithCycle();
// create copy to be converted to DAG
graph_t dag( theGraph );
ConvertToDAG( dag );
// find longest path from first to last vertex
vector< int > path;
int dist;
Longest( dag, 0, 9, path, dist );
DisplayEdges();
cout << "Longest path: ";
for( int v : path )
cout << v << " ";
cout << " length " << dist << endl;
return 0;
}
关于c++ - 使用 Boost.Graph 求解最长路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37434347/
我正在尝试编写一个名为 map-longest 的 Clojure 实用函数(感谢备用名称建议)。该函数将具有以下“签名”: (map-longest fun missing-value-seq c1
为什么我创建了一个重复的线程 我在阅读后创建了这个线程 Longest increasing subsequence with K exceptions allowed .我意识到提出问题的人并没有真
我正在编写一个 Sub 来识别 1 到 1000 之间最长的 Collatzs 序列。由于我刚刚开始学习 VBA,我想知道如何添加过程来计算每个序列的长度。 Sub Collatz() Dim i
我正在编写一个 Sub 来识别 1 到 1000 之间最长的 Collatzs 序列。由于我刚刚开始学习 VBA,我想知道如何添加过程来计算每个序列的长度。 Sub Collatz() Dim i
我正在尝试减去 CSV 中的两列以创建第三列“持续时间”结束时间 - 开始时间 每一行也对应一个用户 ID。 我可以创建一个仅包含“持续时间”列的 csv 文件,但我宁愿将其重定向回原始 csv。 例
我在 2018.04 玩这个最长的 token 匹配,但我认为最长的 token 不匹配: say 'aaaaaaaaa' ~~ m/ | a+? | a+ /; # 「a」
因此,按照规范规定最终用户/应用程序提供的给定变量(200 字节)的字节长度。 使用 python 字符串,字符串的最大字符长度是多少,满足 200 字节,因此我可以指定我的数据库字段的 max_le
我需要针对我们的Jenkins构建集群生成每周报告。报告之一是显示具有最长构建时间的作业列表。 我能想到的解决方案是解析每个从属服务器(也是主服务器)上的“构建历史”页面,对于作业的每个构建,都解析该
我正在构建一个 iOS 应用程序,它将流式传输最长为 15 秒的视频。我阅读了有关 HLS 的好文章,因此我一直在对片段大小为 5 秒的视频进行转码。如果视频的第一部分加载时间太长,那么我们可以在接下
docs for Perl 6 longest alternation in regexes punt to Synopsis 5记录 longest token matching 的规则.如果不同的
我是一名优秀的程序员,十分优秀!