Tree data structure in C# - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T21:19:00Zhttp://stackoverflow.com/feeds/question/66893http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/66893/tree-data-structure-in-c6Tree data structure in C#stimms2008-09-15T20:58:20Z2008-10-17T18:25:23Z
<p>I was looking for a tree or graph data structure in C# but I guess there isn't on provided. <a href="http://msdn.microsoft.com/en-us/library/ms379574.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms379574.aspx</a> explains a bit about why. Is there a convenient library which is commonly used to provide this functionality? Perhaps through a strategy pattern to solve the issues presented in the article.</p>
<p>I feel a bit silly implementing my own tree, just as I would implementing my own ArrayList. </p>
<p>Edit:</p>
<p>I think I need to explain better what I'm looking for. I just want a generic tree which can be unbalanced. Think of a directory tree. C5 looks nifty, but their tree structures seem to be implemented as balanced red-black trees better suited to search than representing a hierarchy of nodes. </p>
http://stackoverflow.com/questions/66893/tree-data-structure-in-c/66933#669333Answer by McKenzieG1 for Tree data structure in C#McKenzieG12008-09-15T21:01:58Z2008-09-15T21:01:58Z<p>The generally excellent <a href="http://www.itu.dk/research/c5/" rel="nofollow">C5 Generic Collection Library</a> has several different tree-based data structures, including sets, bags and dictionaries. Source code is available if you want to study their implementation details. (I have used C5 collections in production code with good results, although I haven't used any of the tree structures specifically.)</p>
http://stackoverflow.com/questions/66893/tree-data-structure-in-c/66956#669564Answer by David for Tree data structure in C#David2008-09-15T21:04:39Z2008-09-15T21:04:39Z<p>My best advice would be that there is no standard tree data structure because there are so many ways you could implement it that it would be impossible to cover all bases with one solution. The more specific a solution, the less likely it is applicable to any given problem. I even get annoyed with LinkedList - what if I want a circular linked list?</p>
<p>The basic structure you'll need to implement will be a collection of nodes, and here are some options to get you started. Let's assume that the class Node is the base class of the entire solution.</p>
<p>If you need to only navigate down the tree, then a Node class needs a List of children.</p>
<p>If you need to navigate up the tree, then the Node class needs a link to its parent node.</p>
<p>Build an AddChild method that takes care of all the minutia of these two points and any other business logic that must be implemented (child limits, sorting the children, etc.)</p>
http://stackoverflow.com/questions/66893/tree-data-structure-in-c/67016#670161Answer by sixlettervariables for Tree data structure in C#sixlettervariables2008-09-15T21:11:34Z2008-09-15T21:11:34Z<p>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.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms364091(VS.80).aspx" rel="nofollow">“An Extensive Examination of Data Structures Using C# 2.0”</a> by Scott Mitchell</p>
http://stackoverflow.com/questions/66893/tree-data-structure-in-c/69174#691749Answer by stimms for Tree data structure in C#stimms2008-09-16T03:30:39Z2008-09-16T03:30:39Z<p>I hate to admit it but I ended up writing my own tree class using a linked list. On an unrelated note I just discovered this round thing which, when attached to a thing I'm calling an 'axle' allows for easier transportation of goods. </p>
http://stackoverflow.com/questions/66893/tree-data-structure-in-c/213283#2132833Answer by chitza for Tree data structure in C#chitza2008-10-17T18:25:23Z2008-10-17T18:25:23Z<p>I came across this question while looking for the same thing myself.
After some googling in found <a href="http://dvanderboom.wordpress.com/2008/03/15/treet-implementing-a-non-binary-tree-in-c/" rel="nofollow">Dan Vanderboom's post</a> and it looks quite promising. I'll give it a try this week-end and I'll post my findings here.</p>