100. Same Tree 1 题目 1. 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 ...
分类:
其他好文 时间:
2019-08-02 09:21:35
阅读次数:
79
// Recursively bool isSameTree1(TreeNode* p, TreeNode* q) { if (p && q) return p->val==q->val && isSameTree(p->left, q->left) && isSameTree(p->right, ... ...
分类:
其他好文 时间:
2019-06-10 10:45:43
阅读次数:
86
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 identi ...
分类:
其他好文 时间:
2019-05-11 21:42:17
阅读次数:
96
1. 38. Count and Say 就是对于前一个数,找出相同元素的个数,把个数和该元素存到新的string里。数量+字符 2. 58. Length of Last Word String.lastIndexOf(); 3. 100. Same Tree 采用递归的方法,return中逻辑的 ...
分类:
其他好文 时间:
2019-04-28 12:37:22
阅读次数:
97
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 ident ...
分类:
其他好文 时间:
2019-04-10 22:10:20
阅读次数:
149
描述 解析 根与根比较,左右子树互相递归比较即可。 代码 ...
分类:
其他好文 时间:
2019-03-22 00:32:36
阅读次数:
87
Some scientists took pictures of thousands of birds in a forest. Assume that all the birds appear in the same picture belong to the same tree. You are ...
分类:
其他好文 时间:
2019-03-17 11:01:49
阅读次数:
149
https://leetcode.com/tag/tree/ ...
分类:
其他好文 时间:
2019-01-30 00:15:31
阅读次数:
132
有错,先序相同,树不一定同 1.先要有正确的求解思路 2.递归是常用的套路 ...
分类:
其他好文 时间:
2019-01-04 23:34:06
阅读次数:
272
题目如下:做过前面几个,感觉这就是个水题了 分析如下: 注意例子2,可以发现输入都是按先序遍历输入的。所以递归顺序还是遵循根-左-右。 判断过程类似于对称二叉树的判断:1.值相同 2.结构相同 没什么难度,直接上代码了。 ...
分类:
其他好文 时间:
2018-11-28 20:33:57
阅读次数:
144