Hello all,
I have written a pretty simple tree data structure that implements the IEnumerable interface.
class Tree<T> : IEnumerable<T>
Everything is working great, I'm adding my nodes and the data is actually an object, so to create a node in my tree, I use something like this:
var tree =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.