`

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.

给定两颗二叉树,判断这两颗树是否相同,它们相同的条件是结构相同,对应节点的值也必须相同。同样采用递归的方式,先比较对应点的节点是否为空,如果都为空,那么在当前状态下返回true;如果一个空,一个不为空,返回false。如果都不为空的情况下,判断对应点的值,如果值不同返回false;如果值相同,递归判断当前节点的子树。代码如下:
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
public class Solution {
    public boolean isSameTree(TreeNode p, TreeNode q) {
        if(p == null && q == null) {
            return true;
        } else if(p != null && q != null) {
            if(p.val != q.val) return false;
            return isSameTree(p.left, q.left) && isSameTree(p.right, q.right);
        }
        return false;
    }
}
0
0
分享到:
评论

相关推荐

    Same-Tree.rar_Same Same

    本问题关注的是如何判断两个二叉树是否相同,即“Same Tree”问题。这个问题在面试和编程挑战中很常见,因为它涉及到对递归和树结构的理解。 首先,我们要明确什么是“相同”的定义。在这个场景下,两棵二叉树相同...

    Code02_SameTree.java

    java面试算法/刷题

    js-leetcode题解之100-same-tree.js

    在这些题目中,有一类题目与数据结构树(Tree)相关,其中问题编号100的题目是“Same Tree”。该题要求编写一个函数,判断两个给定的二叉树是否结构相同,即它们的对应节点值是否相等。 在JavaScript(js)的编程...

    java-leetcode-100-same-tree

    java java_leetcode-100-same-tree

    Tree Listview

    This is a small widget that provides quite configurable tree view list. It is based on ... Implementation follows best approach of Adapters from android so views at the same tree level are reusable.

    python-leetcode题解之100-Same-Tree

    在解决LeetCode中的“100-Same-Tree”题目时,我们关注的是如何使用Python语言来检查两棵二叉树是否完全相同。这个问题是算法与数据结构领域中二叉树比较的经典问题,对于理解树结构及其遍历方法尤为重要。在本题解...

    Leetcode题目+解析+思路+答案.pdf

    - **Same Tree**:判断两棵二叉树是否相同。 - **Balanced Binary Tree**:判断一个二叉树是否是平衡的。 - **Path Sum**:判断是否存在一条路径,其节点值之和等于给定的目标值。 - **Binary Tree Depth Order ...

    Leetcode部分试题解析

    4. **Same Tree**:判断两棵树是否结构相同且对应节点值相等。这涉及到深度优先搜索(DFS)或广度优先搜索(BFS)的实现。 5. **3Sum**:寻找数组中三个元素的和等于特定值的组合。可以使用双指针法解决,先排序...

    LeetCode练习答案

    - **相同的树(Same Tree)**: 判断两个二叉树是否相同。 - **平衡二叉树(Balanced Binary Tree)**: 判断一个二叉树是否是高度平衡的。 ##### 动态规划(Dynamic Programming) - **买卖股票的最佳时机(Best Time to ...

    LeetCode最全代码

    * [Binary Search Tree](https://github.com/kamyu104/LeetCode#binary-search-tree) * [Breadth-First Search](https://github.com/kamyu104/LeetCode#breadth-first-search) * [Depth-First Search]...

    lrucacheleetcode-luoleet:LeetcodesolutionsbyXinhangLuoandQinghaoDai

    https://leetcode.com/problems/same-tree/ Same Tree 101 https://leetcode.com/problems/symmetric-tree/ Symmetric Tree 102 https://leetcode.com/problems/binary-tree-level-order-traversal/ Binary Tree ...

    Leetcode 使用 Javascript 的解决方案.zip

    Leetcode 使用 Javascript 的解决方案Leetcode Problems and interview problems in Javascript10 Regular Expresion Matching.js100 Same Tree.js101 Symmetric Tree.js102 Binary Tree Level Order Traversal.js...

    Leetcode代码以及解答(1)

    #### 100.SameTree **题目描述:** 给定两棵二叉树 `p` 和 `q`,判断它们是否完全相同。 **解题思路:** 1. 需要处理两种特殊情况:两棵树均为空或者仅有一棵树为空。 2. 若两棵树均非空,则比较根节点的值,并...

    algorithms:只是个菜鸟。这个项目是在空闲时间编写的。我会不定期更新。希望与您分享一些东西〜

    与大家分享我学习算法的...数组/链表:树相关:AVLTree 平衡二叉搜索树BinaryHeap 二叉堆(优先队列)Num2TreeSum 数组树的和MaxDepth4Tree (leetcode 104)ValidBinarySearchTree (leetcode 98)SameTree (leetcode 100)...

    Leetcode的ac是什么意思-LeetCodeInJava:leetcode-java

    Same Tree #104 Maximum Depth of Binary Tree #122 Best Time to Buy and Sell Stock II #136 Single Number #150 Evaluate Reverse Polish Notation #169 Majority Element #171 Excel Sheet Column Number #217 ...

    leetcode-js:算法和数据结构是一个程序员的灵魂,LeetCode JavaScript TypeScript 题解

    leetcode-js Leecode 经典题目 JavaScript TypeScript 题解...100.相同的树 (Same Tree) 104.二叉树的最大深度 (Maximum Depth of Binary Tree) 118.杨辉三角 (Pascal's Triangle) 119.杨辉三角 II (Pascal's Triangle)

    leetcode2sumc-Leetcode_questions:Leetcode_questions

    leetcode 2 和 c Leetcode_questions 目前拥有: 简单的: 1.二和(c) 7.反转整数(c) 9.回文数(c) ...100.Same Tree(c++) 101.对称树(c++) 104.二叉树的最大深度(c++) 108.将排序数组转换为二叉搜索树

    leetcode分发糖果-LeetCodeAlgorithm:学习算法,LeetCode刷题,建议经典书籍《算法导论》《算法4》,使用C++和

    sameTree: find_content_children: LeetCode 算法题 时间复杂度和空间复杂度权衡,时间复杂度的提升是以空间复杂度为代价的 仔细观察,LeetCode 上对每一次代码的提交的 执行时间 && 消耗内存 效率 = 算法效率 + ...

    leetcode刷多少面试-LeetCode:力码

    删除过于简单题目(例:100题:Same Tree) 删除题意不同,代码基本相同题目(例:136 & 389,保留一个) 所有题目尽量保证客观公正,只是按大概率删除不常考题目,很多题目面经出现过, 但出现次数属于个位数或者...

Global site tag (gtag.js) - Google Analytics