I am looking for a tree implementation... you can see the me previous question here. but I won't like to implement it myself,
example functionalities needed:
- I need FindElement(node)
- I need GetParent(node) - will do the find again
- GetSubTreeFrom(node) - will find the element and return a subtree..
I know C5 - but all the trees there are red-black (and I don't want it to be ordered) I tried Powercollection didn't find Tree...
I am not sure but maybe Set or Hash can do the job.
any help would be appreciated.