"Sword refers to offer" symmetric binary tree, "Sword refers to offer"

Source: Internet
Author: User

"Sword refers to offer" symmetric binary tree, "Sword refers to offer"

[Disclaimer: All Rights Reserved. indicate the source for reprinting. Do not use it for commercial purposes. Contact mailbox: libin493073668@sina.com]


Question link: http://www.nowcoder.com/practice/ff05d44dfdb04e1d83bdbdab320efbcb? Rp = 3 & ru =/ta/coding-interviews & qru =/ta/coding-interviews/question-ranking


Description
Implement a function to determine whether a binary tree is symmetric. Note: If a binary tree is the same as the image of this binary tree, it is defined as symmetric.

Ideas
Judge the symmetry of its Subtrees recursively from the root node


/*struct TreeNode {    int val;    struct TreeNode *left;    struct TreeNode *right;    TreeNode(int x) :            val(x), left(NULL), right(NULL) {    }};*/class Solution{public:bool isSymmetrical(TreeNode* pRoot){return check(pRoot,pRoot);}bool check(TreeNode *pLeft,TreeNode *pRight){if(pLeft==nullptr && pRight==nullptr)return true;if(pLeft==nullptr || pRight==nullptr)return false;if(pLeft->val != pRight->val)return false;return check(pLeft->left,pRight->right)&&check(pLeft->right,pRight->left);}};


Copyright Disclaimer: This article is the original article of the blogger. If it is reproduced, please indicate the source

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.