把左边=null, 把最左边遍历到null 保证已经flatten 然后再弄右边 然后把root.right跟左边连接,再把右边连接到root.right的最下面 https://leetcode.com/problems/flatten-binary-tree-to-linked-list/dis ...
分类:
其他好文 时间:
2018-09-22 01:05:14
阅读次数:
144
You are given a doubly linked list which in addition to the next and previous pointers, it could have a child pointer, which may or may not point to a ...
分类:
其他好文 时间:
2018-09-21 21:39:58
阅读次数:
276
In this lesson we write an imperative function to flatten nested arrays, and then use the popular map, reduce, compose, and pipe functions to transfor ...
分类:
编程语言 时间:
2018-09-12 19:56:27
阅读次数:
183
本节我们来用 TensorFlow 来实现一个深度学习模型,用来实现验证码识别的过程,这里我们识别的验证码是图形验证码,首先我们会用标注好的数据来训练一个模型,然后再用模型来实现这个验证码的识别。 验证码 首先我们来看下验证码是怎样的,这里我们使用 Python 的 captcha 库来生成即可,这 ...
分类:
其他好文 时间:
2018-09-11 19:33:08
阅读次数:
188
convert -resize 60%x60% -colorspace RGB -background white -flatten -density 150 -quality 100 a.pdf[1] a.png convert -resize 60%x60% -colorspace RGB -b ...
分类:
其他好文 时间:
2018-09-04 19:52:27
阅读次数:
217
numpy 中的reshape,flatten,ravel 数据平展,多维数组变成一维数组 使用array对象 [[ 0 1 2 3] [ 4 5 6 7] [ 8 9 10 11]] flatten 展平 [[ 0 1 2 3] [ 4 5 6 7] [ 8 9 10 11]] array([ 0 ...
分类:
编程语言 时间:
2018-08-29 01:12:46
阅读次数:
297
Reshape层:(改变blob的形状,N,C,W,H) Reshape layer只改变输入数据的维度,但内容不变,也没有数据复制的过程,与Flatten layer类似。 输出维度由reshape_param 指定,正整数直接指定维度大小,下面两个特殊的值: 0 => 表示copy the re ...
分类:
其他好文 时间:
2018-08-26 16:45:14
阅读次数:
193
树里的 divide and conquer 感觉和 post order traversal 就是一个东西,反正都是递归。 下面方法返回了 root ,也可以不返回,直接用 flatten 自己递归也行。 时间复杂度 O(nlogn) 空间复杂度 O(h) ...
分类:
其他好文 时间:
2018-08-26 01:10:35
阅读次数:
121
题目描述 给定一个二叉树,原地将它展开为链表。 例如,给定二叉树 将其展开为: 解题思路 二叉树转化为链表的基本思想是:对于左孩子转化为右孩子;对于右孩子,拼接到根结点左子树最后一个节点作为右孩子。所以在自上而下转化时,对于每个节点要先保存其右孩子,然后记录转为链表后本子树的最后一个节点并返回给上一 ...
分类:
其他好文 时间:
2018-08-21 12:17:08
阅读次数:
167
MNIST dataset 1.Summarization 2.loading "Run_IN_A_CO_NOTEBOOK" the Result KEYBOARDS ...
分类:
其他好文 时间:
2018-08-18 21:14:03
阅读次数:
186