如何递归删除JTree中的所有节点?

发布于 2024-11-26 07:05:27 字数 148 浏览 1 评论 0原文

在由 DefaultMutableTreeNodes 组成的 JTree 中,如何从给定 Node 及其所有祖先开始遍历和删除?

它应该从最深层开始删除,向上备份到给定的节点。给定的起始节点应该是最后要删除的节点。

in a JTree comprised of DefaultMutableTreeNodes, how would you traverse and delete starting from a given Node and all it's ancestors?

it should delete starting at it's deepest level , backing upwards to the given Node. the given starting node should be the last thing to remove.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乄_柒ぐ汐 2024-12-03 07:05:27

递归是你的朋友。

在伪代码中:

def deleteTree(root)
    for each child c of root
        deleteTree(c)
    end
    delete root
end

Recursion is your friend here.

In pseudo code:

def deleteTree(root)
    for each child c of root
        deleteTree(c)
    end
    delete root
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文