How to generate a complex non-binary tree?
I want to create a complex tree, where every subtree can have several branche开发者_如何学编程s that go deep. Where can I find info about this?
EDIT: OK, binary tree also suits my needs. But I can't find random binary tree generator for C#
For an implementation and source: http://daisley-harrison.com/blog/post/NET-Generic-BTree-Library-and-Source-Code.aspx
For concepts and explanation, Wikipedia is your friend: http://en.wikipedia.org/wiki/B-tree
Word complex in your question might mean that you don't exactly understand, what particular tree you need ) You should read general material about trees first and you'll find the closest type of tree...
Here is wide range of data-structures including dozens of tree-types: enter link description here
also good explanation, i'm currently study this and have found this useful http://xlinux.nist.gov/dads//HTML/tree.html but in general,yandex.com will help you
精彩评论