Tree data structure in C#

前端 未结 20 2525
梦如初夏
梦如初夏 2020-11-22 08:30

I was looking for a tree or graph data structure in C# but I guess there isn\'t one provided. An Extensive Examination of Data Structures Using C# 2.0 explains a bit about w

20条回答
  •  日久生厌
    2020-11-22 09:14

    Here's a Tree

    public class Tree : List>
    {
        public  T Data { get; private set; }
    
        public Tree(T data)
        {
            this.Data = data;
        }
    
    }
    

提交回复
热议问题