Java 服务端架构
Spring、Netty、日志框架与工程化实战
🎨 视觉封面LeetCode Same Tree
Problem
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
即比较两个树是否一致。
Java 实现
package com.coderli.leetcode.algorithms.easy;
/**
* Given two binary trees, write a function to check if they are the same or not.
* <p>
* Two binary trees are considered the same if they are structurally identical and the nodes have the same value.
* <p>
* <p>
* Example 1:
* <p>
* Input:<br>
* 1 1
* / \ / \
* 2 3 2 3
* <p>
* [1,2,3], [1,2,3]
* <p>
* Output: true
* <p></p>
* Example 2:
* <p>
* Input:
* 1 1
* / \
* 2 2
* <p>
* [1,2], [1,null,2]
* <p>
* Output: false
* <p>
* Example 3:
* <p>
* Input:
* 1 1
* / \ / \
* 2 1 1 2
* <p>
* [1,2,1], [1,1,2]
* <p>
* Output: false
*
* @author OneCoder 2017-11-10 23:01
*/
public class SameTree {
public static void main(String[] args) {
SameTree sameTree = new SameTree();
TreeNode oneRoot = sameTree.new TreeNode(1);
oneRoot.left = sameTree.new TreeNode(2);
TreeNode twoRoot = sameTree.new TreeNode(1);
oneRoot.right = sameTree.new TreeNode(2);
System.out.println(sameTree.isSameTree(oneRoot, twoRoot));
}
public boolean isSameTree(TreeNode p, TreeNode q) {
if (p == null && q == null) {
return true;
}
if (p == null || q == null) {
return false;
}
if (p.val != q.val) {
return false;
}
return isSameTree(p.left, q.left) && isSameTree(p.right, q.right);
}
public class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode(int x) {
val = x;
}
}
}
分析
超级简单题了。没什么好分析的。
所有代码开源上传至 GitHub:yummy-code 仓库 · GESP 专题站:GESP WIKI
欢迎加入:C++ GESP/CSP 考级答疑群(688906745) 与 Java/Python交流群(982860385),点击可直接加群。
猜你想读 · 相关文章推荐
LeetCode Palindrome Number
Problem Determine whether an integer is a palindrome. Do this without extra space. 即返回一个数是否是回数。例如:1,1221,12321是回数,负数不是回数。题目特别提醒,不要使用额外的空间,即不要考虑转换成String来处理。 <!-...
LeetCode Reverse Integer
Problem Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 Note: The input is assumed to be a 32-bit signed integer. Yo...
LeetCode Roman to Integer
Problem Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. 即将罗马数字1-3999转换成对应的整数。罗马数字规则见wiki:[罗马数字规则][1]...
OneCoder (lihongzheshuai)
一个中年人的自留地,记录学习 C++、GESP/NOI、Java、Python 与算法架构的心得体会。本站唯一网址:coderli.com