vote up 0 vote down star

I been experimenting with the different methods for representing a hierarchical structures in memory that would allow for simple and efficient transversal both up and down to discover ancestor and descendant relationships. Does anyone have any suggestions or examples of the options that I have? Is there a collection type in .Net 3.5 that would help here?

flag

40% accept rate

5 Answers

vote up 1 vote down check

So you want a Tree? FGI

link|flag
Thanks David, that looks very promising. – Stephen franklin Dec 4 '08 at 22:05
vote up 0 vote down

I use LINQ to traverse hierarchical structures that I loaded from XML web services but I bet LINQ would generalize nicely to walk around your tree collection.

-Mike

PS. I mention this because LINQ is just plain fun too.

link|flag
vote up 0 vote down

I'm afraid there is nothing there by default. Make your own.

link|flag
vote up 0 vote down

System.Web.UI.IHierarchicalEnumerable is an interesting pattern.

link|flag
vote up 0 vote down

How about making your own node that looks something like:

  class Node<T> {
    public T Item;
    public LinkedList<T> Children;
  }

Then apply Node recursively, as needed

link|flag
Children should be a LinkedList<Node<T>>, not a LinkedList<T>. – Robert Rossney Dec 1 '08 at 0:12

Your Answer

Get an OpenID
or

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