原题是: 思路是: 这个题前面所有题的不同之处在于,从上到下的过程中,需要上一层的值,所以把上一层的值作为参数传入...[作者空间]
原题是: 思路是: 这个题与前面所刷的树的递归问题的一点区别在于:当前节点要判断是否平衡,除了需要知道它的左右子节...[作者空间]
原题是: 思路是: 区分出唯一的特殊情况:当左子节点存在又没有自己的任何子节点时,它就可以返回左侧的值了。 代码是:[作者空间]
原题是: 思路是: 将给定的整颗树,进行复制。对复制的树,进行左右翻转操作,再对比翻转好的树,和原先的树是否是一样...[作者空间]
原题是: 思路是: 我一开始的思路是:第一步,写两个函数,第一个函数对一个给定的root,求以它为root的这棵树...[作者空间]
原题: 所犯的错误: 开始21,28行没有做赋值给root,导致出错。root是作为对象传入给函数的,如果不将返回...[作者空间]
原题是: 代码是:[作者空间]
原题是: 代码是: 总结: 这个题的逻辑分支,我用到了Python里的三目运算符,不在是 ?:而是if else:...[作者空间]
原题是: 代码是:[作者空间]
原题是: 代码是: 要注意的是: 1.python 里没有&&, 而是and; 没有Null,而是None.2.调...[作者空间]
原题是: Given an array of 2n integers, your task is to group...[作者空间]
原题是: Given an array of integers that is already sorted in...[作者空间]
原题是: Given a non-empty array of integers, return the thir...[作者空间]
原题是 : Suppose you have a long flowerbed in which some of ...[作者空间]
原题是: Assume you have an array of length n initialized wit...[作者空间]
原题是: Given a picture consisting of black and white pixels...[作者空间]
原题是: Given a 2D integer matrix M representing the gray sc...[作者空间]
原题是: Given an array consisting of n integers, find the co...[作者空间]
原题是: Given an unsorted array of integers, find the length...[作者空间]
原题是: Given an array of integers where 1 ≤ a[i] ≤ n (n = s...[作者空间]