用递归和委托实现通用的树遍历

树是一种常用的数据结构,而遍历是最常用的访问模式,下面是用
.net中的委托实现。如果采用泛型,下面的方法将更通用,本文没有使用泛型。

        ///
        /// 委托-处理子节点
        ///

1)     public delegate void DealWith(string str);

        ///
        /// 委托-获得子节点
        ///

2 )    public delegate string[]  GetChilds(string str);

        ///
        /// 递归访问树形数据结构
        ///

        /// 要访问的节点
        ///
        ///
3)     public static void GetAllChilds(string root, GetChilds gcs, DealWith dw)
        {
            dw(root);
            string[] child = gcs(root);
            for(int i=0;i            {
                GetAllChilds(child[i],gcs,dw);
            }
        }

1)主要表示对访问到的节点的处理,比如显示,或者将其填入列表等操作
2)主要表示一个得到其下层节点的委托。这里它是一个返回字符串数组的委托
3)用来遍历节点的主函数。

你可能感兴趣的:(string,数据结构,.net,C#,and,DotNet)