英俊男孩建坤 发表于 2021-11-12 20:37:20

Java tree结构问题求助

本帖最后由 英俊男孩建坤 于 2021-11-12 21:42 编辑

public class GoodTree {

    private class Node {
      int element;
      public Node lc, rc;

      public Node(int key) {
            this.element = key;
      }

      public String toString() {
            return String.valueOf(element);
      }
    }

    Node root;
    public GoodTree() {root = null;}
    public GoodTree (int e) {root = new Node(e);}

    pubilc int size(){};
}


补全方法size 要求不使用Node方法的前提下得出tree中的节点数量   
页: [1]
查看完整版本: Java tree结构问题求助