2017年4月18日

二叉树的花式遍历

摘要: 1、前序遍历 递归: public class preOrder_recursion { public static void preOrder(BinaryTreeNode root) { if (root == null) { return; } System.out.print(root.va 阅读全文
posted @ 2017-04-18 09:59 阳小徐 阅读(175) 评论(0) 推荐(0) 编辑