为 BST 定义迭代器

发布于 2024-12-11 23:48:48 字数 104 浏览 0 评论 0原文

我需要在 C 中定义一个迭代器结构和方法(对于 BST),到目前为止我意识到迭代器结构必须有一个指向当前节点的指针,并且可能还有一个父节点。还有什么东西是我应该放在那里的,或者最好有的吗? 谢谢

I need to define an iterator structure and method in C (for a BST), so far I realise that the iterator struct must have a pointer to a current node, and possibly a parent node. Is there anything else I should have in there, or that would be good to have?
Thanks

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

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

发布评论

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

评论(1

往日 2024-12-18 23:48:48

BST 元素是否有指向其父节点的指针?如果没有,您将需要一堆父节点指针。

Do the BST elements have a pointer to their own parent node? If not, you'll need a stack of parent node pointers.

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