572. Subtree of Another Tree

题目描述

Given two non-empty binary trees s and t, check whether tree t has exactly the same structure and node values with a subtree of s. A subtree of s is a tree consists of a node in s and all of this node’s descendants. The tree s could also be considered as a subtree of itself.
在这里插入图片描述在这里插入图片描述

题目链接

https://leetcode.com/problems/subtree-of-another-tree/

方法思路

public class Solution {
    //Runtime: 10 ms, faster than 94.11% 
    //Memory Usage: 41.5 MB, less than 82.09%
    public boolean isSubtree(TreeNode s, TreeNode t) {
        if (s == null) return false;
        if (isSame(s, t)) return true;
        return isSubtree(s.left, t) || isSubtree(s.right, t);
    }
    
    private boolean isSame(TreeNode s, TreeNode t) {
        if (s == null && t == null) return true;
        if (s == null || t == null) return false;
        if (s.val != t.val) return false;
        return isSame(s.left, t.left) && isSame(s.right, t.right);
    }
}

错误的思路:(我不知道错在哪了,可能是想的太复杂了吧)

class Solution {
    public boolean isSubtree(TreeNode s, TreeNode t) {
        if(t == null) return true;
        if(s == null && t != null) return false;
        TreeNode node = find(s, t.val);
        List<Integer> ls = inorder(s);
        List<Integer> lt = inorder(t);
        if(ls.size() != lt.size()) return false;
        for(int i = 0; i < ls.size(); i++){
            if(ls.get(i) != lt.get(i))
                return false;
        }
        return true;
    }
    public List<Integer> inorder(TreeNode root){
        List<Integer> ans = new LinkedList<>();
        if(root == null) return ans;
        Stack<TreeNode> stack = new Stack<>();
        TreeNode cur = root;
        while(cur != null || !stack.isEmpty()){
            while(cur != null){
                stack.push(cur);
                cur = cur.left;
            }
            cur = stack.pop();
            ans.add(cur.val);
            cur = cur.right;
        }
        return ans;
    }
    public TreeNode find(TreeNode root ,int val){
        if(root == null) return root;
        if(root.val == val) return root;
        TreeNode left = find(root.left, val);
        TreeNode right = find(root.right, val);
        if(left != null) return left;
        if(right != null) return right;
        return null;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值