码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode-----100. 相同的树

时间:2020-07-19 11:33:58      阅读:44      评论:0      收藏:0      [点我收藏+]

标签:def   https   return   --   solution   int   efi   etc   treenode   

代码

/**
 * 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 && !q) return true;
        if (!p || !q || p->val != q->val) return false;
        return isSameTree(p->left, q->left) && isSameTree(p->right, q->right);
    }
};

leetcode-----100. 相同的树

标签:def   https   return   --   solution   int   efi   etc   treenode   

原文地址:https://www.cnblogs.com/clown9804/p/13338832.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!