摘要: 二叉树节点结构 class Node<V>{ V value; Node left; Node right; } 二叉树的遍历(递归) 先序遍历 顺序:根左右 public static void preOrderRecur(Node head) { if (head == null) { retu 阅读全文
posted @ 2021-08-18 16:59 gonghr 阅读(1251) 评论(0) 推荐(2) 编辑