LeetCode第6题“ZigZag Conversion” ...
分类:
其他好文 时间:
2018-03-28 18:48:46
阅读次数:
143
最近使用node的串口库发现很慢,自己用c++写了个驱动使用node去调用它并测试通过,速度也很快,最初版本记录下: test.js gyp配置: test.cc reinterpret_cast用法:reinterpret_cast<type-id> (expression)type-id 必须是 ...
分类:
编程语言 时间:
2018-03-24 17:29:47
阅读次数:
1345
一般常见于二叉树的层序遍历 "Binary Tree Level Order Traversal" "Binary Tree Level Order Traversal II" "Binary Tree Zigzag Level Order Traversal" ...
分类:
其他好文 时间:
2018-03-11 14:29:33
阅读次数:
131
问题描述 在图像编码的算法中,需要将一个给定的方形矩阵进行Z字形扫描(Zigzag Scan)。给定一个n×n的矩阵,Z字形扫描的过程如下图所示: 对于下面的4×4的矩阵, 1 5 3 9 3 7 5 6 9 4 6 4 7 3 1 3 对其进行Z字形扫描后得到长度为16的序列: 1 5 3 9 7 ...
分类:
其他好文 时间:
2018-03-10 19:29:27
阅读次数:
168
问题描述 We have a graph with N vertices, numbered 0 through N?1. Edges are yet to be added. We will process Q queries to add edges. In the i-th (1≦i≦Q) q ...
分类:
其他好文 时间:
2018-03-10 17:50:32
阅读次数:
169
之前一直使用eclipse能够熟悉的设置工程和文件的编码格式,现在换成IntelliJ IDEA设置编码格式的地方有点变化,按照如图所示进行设置: 这里要将Transparent native-to-ascii conversion选项勾选,否则项目中properties文件中的中文会显示成Unic ...
分类:
其他好文 时间:
2018-03-07 00:49:24
阅读次数:
708
test: 如果出现“Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated...”错误,则是numpy版本问题,重新安装numpy的1.13.3这个版本。问题解决。 ...
分类:
编程语言 时间:
2018-03-06 21:53:19
阅读次数:
1868
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font ...
分类:
其他好文 时间:
2018-03-01 11:47:30
阅读次数:
231
The string "PAYPALISHIRING" is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font ...
分类:
其他好文 时间:
2018-02-24 22:01:34
阅读次数:
111
C:\....\Anaconda3\envs\py35\lib\site-packages\h5py\__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np. ...
分类:
其他好文 时间:
2018-02-24 20:45:50
阅读次数:
8085