vote up 6 vote down star
1

I was looking for a tree or graph data structure in C# but I guess there isn't on provided. http://msdn.microsoft.com/en-us/library/ms379574.aspx 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.

I feel a bit silly implementing my own tree, just as I would implementing my own ArrayList.

Edit:

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.

flag

79% accept rate

5 Answers

vote up 4 vote down check

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?

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.

If you need to only navigate down the tree, then a Node class needs a List of children.

If you need to navigate up the tree, then the Node class needs a link to its parent node.

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.)

link|flag
vote up 3 vote down

The generally excellent C5 Generic Collection Library 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.)

link|flag
I was disappointed by the lack of documentation surrounding C5's library, however, it makes sense considering they'd like to sell the book. – sixlettervariables Sep 15 '08 at 21:14
1  
Don't know if maybe things have changed but right now the book is freely available to download as PDF from the C5 site. – Oskar Aug 6 at 12:10
vote up 1 vote down

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

link|flag
vote up 9 vote down

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.

link|flag
3  
+1 for the laughts. :-) – Konrad Rudolph Oct 17 '08 at 18:27
vote up 3 vote down

I came across this question while looking for the same thing myself. After some googling in found Dan Vanderboom's post and it looks quite promising. I'll give it a try this week-end and I'll post my findings here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.