题目: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 f....
分类:
编程语言 时间:
2014-08-04 10:47:57
阅读次数:
222
Problem Description:
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 for better legibility)...
分类:
其他好文 时间:
2014-08-01 00:11:50
阅读次数:
285
/** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(...
分类:
其他好文 时间:
2014-07-27 22:03:49
阅读次数:
214
因为都是中文题,题意就不写了。A、Energy Conversion这题先推断一下能量能否添加,然后再依据添加这个公式去求出一个等比公式,就能够直接求出须要添加几次了B、Disk Schedule首先轨道转移和读取数据时间肯定是要花进去的,剩下就是看转的那部分时间,从0,0開始,回到0,0,中间经过...
分类:
其他好文 时间:
2014-07-24 14:39:05
阅读次数:
247
ZigZag ConversionThe string"PAYPALISHIRING"is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern i...
分类:
其他好文 时间:
2014-07-24 09:51:13
阅读次数:
244
In the development ofShou, I’ve been using GLSL with NEON to manipulate image rotation, scaling and color conversion, before send them to video encode...
分类:
其他好文 时间:
2014-07-23 20:47:45
阅读次数:
399
Nothing to hard to think. Just take care of boundary conditions.class Solution {public: string convert(string s, int nRows) { if(s.empty() |...
分类:
其他好文 时间:
2014-07-23 15:04:36
阅读次数:
227
自定义类型转换器必须实现ongl.TypeConverter接口或对这个接口的某种具体实现做扩展
>com.opensymphony.xwork2.conversion.TypeConverter
à com.opensymphony.xwork2.conversion.impl.DefaultTypeConverter
à org.apache.struts2.util.StrutsT...
分类:
其他好文 时间:
2014-07-22 23:45:27
阅读次数:
378
java很给力逆序用了Colletcions.reverse();/** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; ...
分类:
其他好文 时间:
2014-07-22 00:04:35
阅读次数:
154
原文:JavaScript quirk 1: implicit conversion of values译文:「译」JavaScript 的怪癖 1:隐式类型转换译者:justjavac零:提要[此贴子是javascript 的 12 个怪癖(quirks)系列的第一篇。]JavaScript 是非...
分类:
编程语言 时间:
2014-07-21 23:39:37
阅读次数:
415