Trees

I am trying to use C# for my program that deals with manipulation of trees (i.e. finding distance between different nodes, assigning labels to nodes, storing trees, etc.).

I know I can probably use a multi-dimensional array as my data structure. However, I wanted to find out if C# had any built-in APIs for trees.

Thanks in advance.



Answer this question

Trees

  • Andychay

    I see you have a double post, you have allready a topic where this is discussed. I reposted there and this one will be closed.

    For any replies and further discussion, use this topic: Trees.


  • zipfeli

    What do you mean with Trees You meen Red-Black Trees (B-Trees), if so take a look at this articles: Red-Black Trees in C#.

    A great article about a Tree Collection can be found here, A Tree Collection.


  • Trees