摘要: java实现二叉树 1、定义数据结点 class Node<E> { E e; Node<E> left, right; int size, depth;// 扩展 public Node() { this.e = null; this.left = null; this.right = null; 阅读全文
posted @ 2022-07-10 17:47 心动如雷 阅读(20) 评论(0) 推荐(0) 编辑