摘要: 先序遍历 中序遍历 后序遍历val = $value; }}function preTraverse(Node $root){ echo $root->val.""; if($root->l_child != null) preTraverse($root->l_child); ... 阅读全文
posted @ 2014-09-10 14:34 UCanBeFree 阅读(165) 评论(0) 推荐(0)