遍历所有节点的迭代加长伪代码
使用迭代加长深度优先方法遍历图中所有节点的算法、伪代码或实际代码是什么?
What would the algorithm, pseudo code or actual code to traverse all the nodes in a graph using an iterative lengthening depth-first approach?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我首先为您提供图的深度优先伪代码
,迭代 DLS 是
您始终可以通过使用访问列表删除图循环来转换树中的图。 :)
I give you first the depth-first pseudo-code for graph
and the iterative DLS is
You can always transform a graph in a tree by removing graph loop with a visited list. :)