求最大二叉搜索子树大小

求最大二叉搜索子树大小

面试题

给定一棵二叉树的头节点head,
返回这颗二叉树中最大的二叉搜索子树的大小

思考

任意一棵树求它的最大二叉搜索子树大小

先考虑这棵树本身是不是二叉搜索树?

1)不是:
1.1)左边右边的二叉树搜索子树最大值
2)是:
2.1)那么最大值就是所有节点
判断一棵树是不是二叉搜索树需要信息有,左右树是不是BST,左树最大值是不是小于等于头值,右树最小值是不是大于等于头值。

信息合集

1)子树的节点数
2)子树是不是二叉搜索树
3)子树的最大值和最小值
4)子树的最大二叉搜索树大小

代码实现

public class Code04_MaxSubBSTSize {
    public static class Node {
        private int value;
        private Node left;
        private Node right;

        public Node(int value) {
            this.value = value;
        }
    }
    //for test
    //暴力法:直接找到最大的搜索子树,判断一棵树是不是搜索二叉树直接将中序序列放到list中,然后看这个list是不是升序
    public static int getMaxSubBSTSize1(Node head) {
        if (head == null) return 0;
        return process1(head);
    }

    //当前树若是搜索二叉树,那最大的肯定是当前树,不然就得找找看左右树谁的大、
    //返回最大搜索二叉子树
    public static int process1(Node head) {
        if (head == null) return 0;
        int headBSTSize = getBSTSize(head);
        if (headBSTSize != 0) return headBSTSize;
        int size = Math.max(process1(head.left), process1(head.right));
        return size;
    }

    public static int getBSTSize(Node head) {
        if (head == null) return 0;
        ArrayList<Node> list = new ArrayList<>();
        in(head, list);
        for (int i = 0; i < list.size() - 1; i++) {
            if (list.get(i).value > list.get(i + 1).value) return 0;
        }
        return list.size();
    }

    private static void in(Node head, ArrayList<Node> list) {
        if (head == null) return;
        in(head.left, list);
        list.add(head);
        in(head.right, list);
    }
    //套路法:

    public static int getMaxSubBSTSize2(Node head) {
        if (head == null) return 0;
        return process2(head).maxSubBSTSize;
    }

    private static Info process2(Node head) {
        //n==1
        if (head == null) return null;
        //n==m
        Info leftInfo = process2(head.left);
        Info rightInfo = process2(head.right);
        //n==m+1,加工
        int nodes = (leftInfo == null ? 0 : leftInfo.nodes) + (rightInfo == null ? 0 : rightInfo.nodes) + 1;
        boolean isBST = ((leftInfo == null || (leftInfo.isBST && leftInfo.max <= head.value)) && (rightInfo == null || (rightInfo.isBST && rightInfo.min >= head.value)));
        int max = Math.max(
                    Math.max(
                            leftInfo == null ? Integer.MIN_VALUE : leftInfo.max,
                            rightInfo == null ? Integer.MIN_VALUE : rightInfo.max
                    ),
                    head.value
                  );
        int min = Math.min(Math.min(leftInfo == null ? Integer.MAX_VALUE : leftInfo.min, rightInfo == null ? Integer.MAX_VALUE : rightInfo.min), head.value);
        int maxSubBSTSize = isBST ? nodes : Math.max(leftInfo == null ? Integer.MIN_VALUE : leftInfo.maxSubBSTSize, rightInfo == null ? Integer.MIN_VALUE : rightInfo.maxSubBSTSize);
        return new Info(nodes, isBST, max, min, maxSubBSTSize);
    }

    public static class Info {
        private int nodes;
        private boolean isBST;
        private int max;
        private int min;
        private int maxSubBSTSize;

        public Info(int nodes, boolean isBST, int max, int min, int maxSubSize) {
            this.nodes = nodes;
            this.isBST = isBST;
            this.max = max;
            this.min = min;
            this.maxSubBSTSize = maxSubSize;
        }
    }
    //for test
    public static Node generalRandomTree(int maxFloor, int maxValue) {
        return pre(maxFloor, maxValue, 1);
    }
    //for test
    private static Node pre(int maxFloor, int maxValue, int curFloor) {
        if (curFloor > maxFloor || Math.random() < 0.35) return null;
        Node head = new Node((int) (Math.random() * maxValue));
        head.left = pre(maxFloor, maxValue, curFloor + 1);
        head.right = pre(maxFloor, maxValue, curFloor + 1);
        return head;
    }

    public static void main(String[] args) {
        int maxFloor = 4, maxValue = 100, testTimes = 1000000;
        int i = 0;
        for (; i < testTimes; i++) {
            Node head = generalRandomTree(maxFloor, maxValue);
            if (getMaxSubBSTSize1(head) != getMaxSubBSTSize2(head)) break;
        }
        Logger.getGlobal().info(i == testTimes ? "finish!!!" : "oops!!!");
    }
}

对数器真是个好东西,就随便写,用你一想就想得到的暴力法最快写出来就行。这道题可以不用子树传节点数回来,先判断当前这棵树是不是二叉搜索树,然后若是的话那么子树肯定都是二叉搜索树,那个时候它们的maxSubBSTSize就是它树的节点数。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容