二叉树 C++实现 数据结构

时间:2011-11-03 10:43:48
【文件属性】:

文件名称:二叉树 C++实现 数据结构

文件大小:3KB

文件格式:CPP

更新时间:2011-11-03 10:43:48

二叉树 C++

数据结构作业 二叉树实现 运行结果: Please input elements of the tree end up with $ : 1 2 $ $ 3 $ 4 5 $ $ 6 $ $ InOrder Recursive Traverse : 2 1 3 5 4 6 InOrder Unrecursive Traverse : 2 1 3 5 4 6 The depth of the tree is:4


网友评论