gpt4 book ai didi

algorithm - 获取二叉树中的所有序列

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

我有一个二叉树,我需要获取叶子和根之间的所有序列。
例如,对于这样的树
tree

我需要获取序列:“ABD”、“ABE”、“AC”。
如何实现?谢谢。

最佳答案

伪代码:

Function ProcessNode(TreeNode, ParentPath)
CurrentPath = Append(ParentPath, TreeNode.Name)
If IsNull(TreeNode.Left) And IsNull(TreeNode.Right) Then
Print(CurrentPath)
Else
If IsNotNull(TreeNode.Left) Then ProcessNode(TreeNode.Left, CurrentPath)
If IsNotNull(TreeNode.Right) Then ProcessNode(TreeNode.Right, CurrentPath)


ProcessNode(Root, "")

关于algorithm - 获取二叉树中的所有序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13360634/

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