标签:symmetric tree 镜像树 same tree leetcode 递归
Symmetric Tree
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree is symmetric:
1 / 2 2 / \ / 3 4 4 3
But the following is not:
1 / 2 2 \ 3 3
struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; class Solution { public: bool isSymmetricRecursive(TreeNode* root1,TreeNode* root2) { if(root1 == NULL && root2 == NULL)return true; if(root1 == NULL || root2 == NULL)return false; return (root1->val == root2->val) && isSymmetricRecursive(root1->left,root2->right) && isSymmetricRecursive(root1->right,root2->left); } bool isSymmetric(TreeNode *root) { if(root == NULL)return true; return isSymmetricRecursive(root->left,root->right); } };
struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; class Solution { public: bool isSymmetric(TreeNode *root) {//判断镜像树和生成镜像树不同 if(!root || !root->left && !root->right)return true; queue<TreeNode*> leftQueue,rightQueue; leftQueue.push(root->left); rightQueue.push(root->right); while(leftQueue.size() > 0 && rightQueue.size() > 0) { TreeNode* pNode1 = leftQueue.front(); leftQueue.pop(); TreeNode* pNode2 = rightQueue.front(); rightQueue.pop(); if(!pNode1 && !pNode2)continue;//都为空 if(!pNode1 || !pNode2)return false;//只有一个为空 if(pNode1->val != pNode2->val)return false;//都不为空 leftQueue.push(pNode1->left),leftQueue.push(pNode1->right);//第一个队列先进左子树 rightQueue.push(pNode2->right),rightQueue.push(pNode2->left);//第二个队列先进右子树 } if(leftQueue.size() > 0 || rightQueue.size() > 0)return false; return true; } };
struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; void SymmetricTreeRecursive(TreeNode* root)//递归,注意和上面判断镜像树的区别 { if(!root)return; TreeNode* tmp = root -> left; root -> left = root->right; root->right = tmp; SymmetricTreeRecursive(root->left); SymmetricTreeRecursive(root->right); } void SymmetricTreeIterative(TreeNode* root)//迭代 { if(!root)return; stack<TreeNode*> s; s.push(root); while(!s.empty()) { TreeNode* pCur = s.top(); s.pop(); TreeNode* tmp = pCur->left; pCur->left = pCur->right; pCur->right = tmp; if(pCur->left)s.push(pCur->left); if(pCur->right)s.push(pCur->right); } }
Given two binary trees, write a function to check if they are equal or not.
Two binary trees are considered equal if they are structurally identical and the nodes have the same value.
递归解法
struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; class Solution { public: bool isSameTree(TreeNode *p, TreeNode *q) { if(p == NULL && q == NULL)return true; if(p == NULL || q == NULL)return false; if(p->val == q->val)return isSameTree(p->left,q->left) && isSameTree(p->right,q->right); else return false; } };
struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; class Solution { public: bool isSameTree(TreeNode *p, TreeNode *q) { if(!p && !q)return true; if(!p || !q)return false; queue<TreeNode*> queue1,queue2; queue1.push(p),queue2.push(q); while(queue1.size()>0 && queue2.size()>0) { TreeNode* pNode1 = queue1.front(),*pNode2 = queue2.front(); queue1.pop(),queue2.pop(); if(!pNode1 && !pNode2)continue; if(!pNode1 || !pNode2)return false; if(pNode1->val != pNode2->val)return false; queue1.push(pNode1->left),queue1.push(pNode1->right); queue2.push(pNode2->left),queue2.push(pNode2->right);//由于是判断相同树,所以进队顺序相同 } if(queue1.size()>0 || queue2.size()>0)return false; return true; } };
标签:symmetric tree 镜像树 same tree leetcode 递归
原文地址:http://blog.csdn.net/fangjian1204/article/details/38794071