zoukankan      html  css  js  c++  java
  • 程序员面试金典-面试题 04.10. 检查子树

    题目:

    https://leetcode-cn.com/problems/check-subtree-lcci/

    检查子树。你有两棵非常大的二叉树:T1,有几万个节点;T2,有几万个节点。设计一个算法,判断 T2 是否为 T1 的子树。

    如果 T1 有这么一个节点 n,其子树与 T2 一模一样,则 T2 为 T1 的子树,也就是说,从节点 n 处把树砍断,得到的树与 T2 完全相同。

    示例1:

    输入:t1 = [1, 2, 3], t2 = [2]
    输出:true
    示例2:

    输入:t1 = [1, null, 2, 4], t2 = [3, 2]
    输出:false
    提示:

    树的节点数目范围为[0, 20000]。

    分析:

    写一个辅助函数,依次判断两个子树的节点是否相同,然后主函数递归调用辅助函数来帮助判断即可。

    程序:

    /**
     * Definition for a binary tree node.
     * public class TreeNode {
     *     int val;
     *     TreeNode left;
     *     TreeNode right;
     *     TreeNode(int x) { val = x; }
     * }
     */
    class Solution {
        public boolean checkSubTree(TreeNode t1, TreeNode t2) {
            if(t1 == null && t2 == null)
                return true;
            if(t1 == null || t2 == null)
                return false;
            if(check(t1, t2))
                return true;
            return checkSubTree(t1.left, t2) || checkSubTree(t1.right, t2);
        }
        public boolean check(TreeNode t1, TreeNode t2) {
            if(t1 == null && t2 == null)
                return true;
            if(t1 == null || t2 == null)
                return false;
            if(t1.val != t2.val)
                return false;
            return check(t1.left, t2.left) && check(t1.right, t2.right);
        }
    }
  • 相关阅读:
    铺地毯
    解方程
    引水入城
    10.16今日暂时停更博客
    聪明的质监员
    CCF NOI plus 201(7)6 初赛题 解题报告
    初赛可能会用到的计算机基础理论知识整理
    火柴排队
    借教室
    10.10今日暂时停更博客
  • 原文地址:https://www.cnblogs.com/silentteller/p/12434187.html
Copyright © 2011-2022 走看看