leetcode 100

github
个人所有的leetcode题解,都在我的 leetcode-java,欢迎star和共同探讨。
leetcode #100
leetcode第100题,判断两棵树是否相同,两棵树如果长得一样,而且对应位置上的值相同,就定义为两棵树相同。

/*
 * @lc app=leetcode id=100 lang=java
 *
 * [100] Same Tree
 *
 * https://leetcode.com/problems/same-tree/description/
 *
 * algorithms
 * Easy (49.87%)
 * Total Accepted:    370.9K
 * Total Submissions: 743.7K
 * Testcase Example:  '[1,2,3]\n[1,2,3]'
 *
 * Given two binary trees, write a function to check if they are the same or
 * not.
 *
 * Two binary trees are considered the same if they are structurally identical
 * and the nodes have the same value.
 *
 * Example 1:
 *
 *
 * Input:     1         1
 * ⁠         / \       / \
 * ⁠        2   3     2   3
 *
 * ⁠       [1,2,3],   [1,2,3]
 *
 * Output: true
 *
 *
 * Example 2:
 *
 *
 * Input:     1         1
 * ⁠         /           \
 * ⁠        2             2
 *
 * ⁠       [1,2],     [1,null,2]
 *
 * Output: false
 *
 *
 * Example 3:
 *
 *
 * Input:     1         1
 * ⁠         / \       / \
 * ⁠        2   1     1   2
 *
 * ⁠       [1,2,1],   [1,1,2]
 *
 * Output: false
 *
 *
 */
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    // 思路:看到树,就想到了递归
    // 判断两个树是否相同,就是要判断两个树的所有节点是否相同
    // 就是要对树上相同位置的两个节点做判断,这个时候就是分类讨论
    // 两个节点都为空,则为true,此时本次递归完成,为递归的出口
    // 两个节点都不为空且值相同,也为true,然后就该递归判断该节点的左右节点
    // 剩下的情况也是递归出口,不过返回的是false
    public boolean isSameTree(TreeNode p, TreeNode q) {
        if ((p == null && q == null)) {
            return true;
        } else if (p != null && q != null && p.val == q.val) {
            return isSameTree(p.left, q.left) && isSameTree(p.right, q.right);
        } else {
            return false;
        }

    }
}

你可能感兴趣的:(leetcode 100)