Hi,
I want to have something like a tree datastructure. I want to represent a tree containing integers.
I want it to be able to easily add nodes and to easily geth the path from a leaf to the base node.
e.g.I can't seem to find anything on msdn. Doesn't this exist? If so, where must I look. If not, how do I start on this?Code:0
1 8 6 3
7 9 4
2
5
//so it must be easy to append an new integer node on any leaf. e.g. append 10 on 5.
//and it must be easy to give the path for a given node. e.g. for 5: 5-2-7-8-0; e.g. for 9: 9-8-0
You may also point me to sample implementations of this..
greets
