亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

leetCode 100. Same Tree 樹

發布時間:2020-08-11 14:00:04 來源:網絡 閱讀:437 作者:313119992 欄目:編程語言

100. Same Tree


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

2016-08-07 00:01:38

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁乡县| 民权县| 宜君县| 皋兰县| 安福县| 漳州市| 读书| 前郭尔| 泾源县| 新乡县| 阿荣旗| 织金县| 沂南县| 林周县| 崇明县| 柘荣县| 广安市| 通海县| 区。| 宝坻区| 呼伦贝尔市| 铜梁县| 偃师市| 海阳市| 同江市| 秀山| 千阳县| 平南县| 南雄市| 南陵县| 财经| 鱼台县| 仪征市| 页游| 都昌县| 勃利县| 定结县| 保德县| 乐山市| 深水埗区| 夏津县|