鱼C论坛

 找回密码
 立即注册
查看: 3155|回复: 0

Java tree结构问题求助

[复制链接]
发表于 2021-11-12 20:37:20 | 显示全部楼层 |阅读模式
10鱼币
本帖最后由 英俊男孩建坤 于 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中的节点数量   

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-22 18:28

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表