1、不要硬编string/ numeric,可以使用一些常量代替。(提高可读性)intCount;Count=100;privatestaticconstintZERO=0;if(Count==ZERO){//执行一些操作}2、对于字符串比较-使用String. Empty ,而不是""。3、不要声...
分类:
Web程序 时间:
2014-09-18 20:26:34
阅读次数:
191
1.导入SystemConfiguration.framework,并#import+ (BOOL)connectedToNetwork{ //创建零地址,0.0.0.0的地址表示查询本机的网络连接状态 struct sockaddr_storage zero...
分类:
移动开发 时间:
2014-09-18 18:25:34
阅读次数:
337
Peter had a cube with non-zero length of a side. He put the cube into three-dimensional space in such a way that its vertices lay at integer points (it is possible that the cube's sides are not parall...
分类:
其他好文 时间:
2014-09-18 16:36:44
阅读次数:
196
题意:对于两个数i和k,把它分为两个部分的数,n和m,如果(n+m)%k=0 那么这算一种分法
比如 333可分成,3、33或者33、3,对于 (333,3)就等于2.
现在给出 a、b、k,为 (a~b,k)有多少种分法
思路:对于一个数,注意前导零并枚举分点就好了。
dp[22][22][22][22][2], 代表 i位,分点为fd,余数mod,对于k取余,是否有前导零
...
分类:
其他好文 时间:
2014-09-17 16:51:02
阅读次数:
169
打乱了,找线索,拼起来,再背。
import random
s = '''
However, even NRZI can have long series of zeros (or ones if transitioning on "zero"),
and thus clock recovery can be difficult unless some form of run length l...
分类:
其他好文 时间:
2014-09-16 14:19:20
阅读次数:
350
A computer-implemented system and method for a lock-less, zero data copy messaging mechanism in a multi-core processor for use on a modem in a telecom...
分类:
移动开发 时间:
2014-09-16 00:19:19
阅读次数:
395
Implement regular expression matching with support for'.'and'*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The...
分类:
其他好文 时间:
2014-09-15 21:14:39
阅读次数:
190
. 创建一个 webService 工程。 2. 创建一个普通 Java 类 view plaincopy to clipboard package?com.hmw.jaxws; /** * 提供 WebService 服务的测试类<br> * <b>注意:</b>该类必须有一个无参构造方法,否则无法使...
分类:
Web程序 时间:
2014-09-12 17:28:44
阅读次数:
393
A non-empty zero-indexed array A consisting of N integers is given. Array A represents numbers on a tape.Any integer P, such that 0 &A);that, given a....
分类:
其他好文 时间:
2014-09-09 22:44:39
阅读次数:
482
Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding element....
分类:
其他好文 时间:
2014-09-09 18:01:59
阅读次数:
146