Good morning,
Is there any good, efficient and good-performance n-ary tree data structure implementation for C#? I don’t need any flexibility regarding the type of the nodes, since I only need to store strings. However, I would like fast lookup time. Also, I need to label “edges” of the tree with (short) integers, but these labels can well be stored at each node.
Thank you very much.
Have you tried this?
Also, you can always try TreeNode class.