我有一个 adjacency_list 图定义如下:
struct VertexProperties{
std::string name;
...
};
typedef boost::adjacency_list<boost::vecS,
boost::vecS,
boost::directedS,
VertexProperties> GraphType;
typedef GraphType::vertex_descriptor VertexType;
给定一个图、顶点和出边索引,我怎样才能得到相邻的顶点?