实现 IEnumerable数据结构

发布于 2025-01-05 02:03:37 字数 634 浏览 0 评论 0原文

我遇到了以下实现二叉树的代码。为了方便foreach,实现了IEnumerable。这是使 foreach 工作的最简单方法吗?我不明白为什么需要两个 GetEnumerator() 函数。

public class BinaryTree<T> : IEnumerable<T>
{
 ..   
        public IEnumerator<T> InOrderTraversal()
        {
            ...
            yield return curr.Value;    
            ...         
        }

        public IEnumerator<T> GetEnumerator()
        {
            return InOrderTraversal();
        }


        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
        {
            return GetEnumerator();
        }
}

I came across the following code that implements a Binary Tree. For facilitating foreach, IEnumerable is implemented. Is this the easiest way to make foreach work? I don't understand why two GetEnumerator() functions are needed.

public class BinaryTree<T> : IEnumerable<T>
{
 ..   
        public IEnumerator<T> InOrderTraversal()
        {
            ...
            yield return curr.Value;    
            ...         
        }

        public IEnumerator<T> GetEnumerator()
        {
            return InOrderTraversal();
        }


        System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
        {
            return GetEnumerator();
        }
}

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

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

发布评论

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

评论(1

爱人如己 2025-01-12 02:03:37

一个返回 IEnumerator,另一个返回 IEnumerator。这样,在 .NET 中引入泛型之前编写的遗留代码仍然可以使用此数据结构。

One returns IEnumerator<T> the other returns IEnumerator. This is so that legacy code that was written before generics were introduced in .NET can still work with this data structure.

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