2020-01-11-SameTree
LeetCode 100
1 | Given two binary trees, write a function to check if they are the same or not. |
Solution
题目其实很简单的一个递归Recursion,我们很轻松可以通过递归来解决
1 | class Solution { |
时间复杂度为O(n),控件复杂度为O(logn)~O(n)之间,这道题就不考虑其他解法了,recursion目前看来是最优解
1 | Given two binary trees, write a function to check if they are the same or not. |
题目其实很简单的一个递归Recursion,我们很轻松可以通过递归来解决
1 | class Solution { |
时间复杂度为O(n),控件复杂度为O(logn)~O(n)之间,这道题就不考虑其他解法了,recursion目前看来是最优解