Subtree of Another Tree:
Given the roots of two binary trees root
and subRoot
, return true
if there is a subtree of root with the same structure and node values of subRoot
and false
otherwise.
A subtree of a binary tree tree is a tree
that consists of a node in tree
and all of this node’s descendants. The tree tree
could also be considered as a subtree of itself.
Input: root = [3,4,5,1,2], subRoot = [4,1,2]
Output: true
Input: root = [3,4,5,1,2,null,null,null,null,0], subRoot = [4,1,2]
Output: false
root
tree is in the range [1, 2000]
.subRoot
tree is in the range [1, 1000]
.-10^4 <= root.val <= 10^4
-10^4 <= subRoot.val <= 10^4
Try this Problem on your own or check similar problems:
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode() {}
* TreeNode(int val) { this.val = val; }
* TreeNode(int val, TreeNode left, TreeNode right) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
class Solution {
public boolean isSubtree(TreeNode root, TreeNode subRoot) {
if(root == null || subRoot == null) return root == subRoot;
return isSameTree(root, subRoot) ||
isSubtree(root.left, subRoot) ||
isSubtree(root.right, subRoot);
}
private boolean isSameTree(TreeNode p, TreeNode q) {
return helper(p, q);
}
private boolean helper(TreeNode p, TreeNode q){
if(p == null || q == null) return p == q;
return p.val == q.val && helper(p.left, q.left) && helper(p.right, q.right);
}
}
Time complexity is O(n\*m)
respectively the number of nodes in root
tree and number of nodes in subRoot
since for each of the nodes in root
we check if it matches with the subRoot
using the
Same Tree
solution. If we don’t find a match in root
node check left and right subtree. If we have either root == null
or subRoot == null
, we have match only if they both equal to null
so we check for equality. The space complexity in worst case is proportional to the number of nodes in the root
tree, since we can have left or right skewed tree and the recursion stack in that case would be of size n
.
Don’t settle for anything less than the crown. Join our newsletter and become the King of Interviews! Click here to join now and get the latest updates.