题目:Given two 1d vectors, implement an iterator to return their elements alternately.For example, given two 1d vectors:v1 = [1, 2]v2 = [3, 4, 5, 6]By c...
分类:
其他好文 时间:
2015-12-10 13:32:40
阅读次数:
217
Matrix Zigzag TraversalGiven a matrix ofmxnelements (mrows,ncolumns), return all elements of the matrix in ZigZag-order.Have you met this question in ...
分类:
其他好文 时间:
2015-12-06 21:04:11
阅读次数:
621
1 public class Solution { 2 public List> zigzagLevelOrder(TreeNode root) { 3 List> result = new ArrayList>(); 4 if (root == null)...
分类:
其他好文 时间:
2015-12-04 10:37:41
阅读次数:
139
public class Solution { public String convert(String s, int numRows) { if (numRows == 1) { return s; } int flg = 0;...
分类:
其他好文 时间:
2015-12-03 07:11:42
阅读次数:
128
LeetCode -- ZigZag Conversion...
分类:
其他好文 时间:
2015-12-02 10:37:09
阅读次数:
107
1、RDD是Resilient Distributed Dataset(即"弹性分布式数据”)的缩写,它是Spark中的基本抽象类,包含在所有RDD中存在的基本操作:map、filter、persist。immutable:不可变的;implicit conversion:隐式变换;propagat...
分类:
其他好文 时间:
2015-11-26 15:17:18
阅读次数:
360
1 var convert = function(s, numRows) { 2 if (numRows === 1) { 3 return s; 4 } 5 6 var i, j, 7 count = 0, 8 colDi...
分类:
其他好文 时间:
2015-11-25 10:06:21
阅读次数:
155
ArcToolbox > Conversion Tools > To Shapefile > Feature Class To Shapefile (multiple)Click on the 'Environments...' button at the bottom of the dialog ...
分类:
其他好文 时间:
2015-11-16 12:06:35
阅读次数:
174
思路:String[numRow]行字符串数组。读取原始字符串每一个字符,设置行变量 nrow和行标志位flag(向下一行为1或向上一行为-1)。将该字符连接到数组中对应的行字符串,同时nrow+=flag。 1 public String convert(String s, int num...
分类:
其他好文 时间:
2015-11-16 00:44:28
阅读次数:
144
今天编译一个C++程序时,报了一个奇怪的错误(之前是好好的):1>LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corruptGoogle上搜了一下解决方案:把Project Properties -> Configuration Properties -> Linker (Gener...
分类:
其他好文 时间:
2015-11-14 01:06:26
阅读次数:
1633