How to create a binary tree

前端 未结 5 1159
感情败类
感情败类 2020-12-14 05:17

I did\'nt mean binary search tree.

for example, if I insert values 1,2,3,4,5 in to a binary search tree the inorder traversal will give 1,2,3,4,5 as output.

5条回答
  •  一个人的身影
    2020-12-14 05:24

    If you're after source for a comprehensive BinaryTree implementation you can learn from have a look at The C5 Generic Collection Library.

提交回复
热议问题