所以,我今天一定已经阅读了 Boost 文档一个小时。我一定是个盲人。我希望有一个简单的问题:
如何使用 boost::adjacency_list 获得一条边的相应顶点?
我有以下代码,我想弄清楚:
typedef boost::adjacency_list<boost::vecS, boost::vecS, boost::undirectedS> Graph;
typedef boost::graph_traits<Graph>::edge_iterator EdgeIterator;
typedef std::pair<EdgeIterator, EdgeIterator> EdgePair;
EdgePair ep;
for (ep = edges(g); ep.first != ep.second; ++ep.first)
{
// Get the two vertices that are joined by this edge...
}
有人知道怎么做吗?
谢谢