gpt4 book ai didi

c++ - 如何在柠檬中找到节点的邻居

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:57:57 26 4
gpt4 key购买 nike

在 Lemon C++ 图形库中,给定无向图中的一个节点说,如何找到边连接的其他节点?

最佳答案

即使我对 C++ 生疏并且之前没有使用过 Lemon,我也会尝试一下:

for (ListDigraph::OutArcIt arcIt(graph, node); arcIt != INVALID; ++arcIt) {

Arc arc(*arcIt); // Lemon iterators are supposed to be convertible to items
// without operator*, so arc(a) might work too.

Node oppositeNode( g.oppositeNode(node, arc) );

// Do something with the opposite node.
...
}

我用过这个: LEMON -- an Open Source C++ Graph Template Library

...还有这个: LEMON: Graph Class Reference

...多年来我在图论方面做了相当多的工作。

希望对你有帮助。

关于c++ - 如何在柠檬中找到节点的邻居,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3574569/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com