题目描述
输入两棵二叉树A,B,判断B是不是A的子结构。
我们规定空树不是任何树的子结构。
样例
树A:
8
/ \
8 7
/ \
9 2
/ \
4 7
树B:
8
/ \
9 2
返回 true ,因为B是A的子结构。
算法1
一看到题目就想到 首先遍历A树(hasSubtree())
以每个点作为根节点和B树的节点比较 看看是否相同(issame())
如果和B树每个节点的值都相同(issame() 递归到B树节点为NULL) 那么就是有B结构的子树
C++ 代码
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
bool IsSame(TreeNode* pRoot1, TreeNode* pRoot2)
{
if( pRoot2 == NULL) return true;
if( pRoot1 == NULL ) return false;
if(pRoot1->val != pRoot2->val) return false;
return IsSame(pRoot1->left ,pRoot2->left) && IsSame(pRoot1->right,pRoot2->right);
}
bool hasSubtree(TreeNode* pRoot1, TreeNode* pRoot2) {
if ( NULL == pRoot1 || NULL == pRoot2) return false;
if( IsSame(pRoot1,pRoot2) ) return true;
if( hasSubtree(pRoot1->right,pRoot2) ) return true;
if( hasSubtree(pRoot1->left,pRoot2) ) return true;
return false;
}
};