題目鏈接:https://leetcode.com/PRoblems/same-tree/?tab=Description
題目描述:
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.
用深度優先遍歷兩個二叉樹,比較對應節點的值
方法一:
字節一開始寫的,最直接的方法
/** * 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 isSameTree(TreeNode* p, TreeNode* q) { if((p==NULL)&&(q==NULL)) return 1; else if((p==NULL&&q!=NULL)||(q==NULL&&p!=NULL)) return 0; else if(p->val!=q->val) return 0; else if(isSameTree(p->left,q->left)) return isSameTree(p->right,q->right); else return 0; }};方法二:更簡潔的代碼
/** * 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 isSameTree(TreeNode* p, TreeNode* q) { return (p==NULL&&q==NULL)|| ((p!=NULL&&q!=NULL&&p->val==q->val)&& isSameTree(p->left,q->left)&&isSameTree(p->right,q->right));//左右子樹都得相同 }};
新聞熱點
疑難解答