- 求二叉树的先序序列
- 2009-01-17 09:41:26 @
怎么建立二叉树!!!!
谁来帮帮我啊!!!!!!!!!
3 条评论
-
鸡肉饭 LV 4 @ 2016-04-30 07:37:32
class TreeNode { public: char val; TreeNode* leftchild; TreeNode* rightchild; };
-
2016-04-30 07:32:22@
// input code here
-
2015-04-16 12:39:55@
这不用二叉树的
递归即可
- 1