2017年9月1日

摘要: //先序遍历 public static void preOrder(BinaryTree root){ if(root==null) return; System.out.print(root.data+" "); preOrder(root.lChild); preOrde... 阅读全文
posted @ 2017-09-01 18:16 zhangxiaoyu 阅读(165) 评论(0) 推荐(0)

导航