Tree data structure in C#

前端 未结 20 2146
梦如初夏
梦如初夏 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 08:58

    If you would like to write your own, you can start with this six-part document detailing effective usage of C# 2.0 data structures and how to go about analyzing your implementation of data structures in C#. Each article has examples and an installer with samples you can follow along with.

    “An Extensive Examination of Data Structures Using C# 2.0” by Scott Mitchell

提交回复
热议问题