1. by zero发生被0除错误2. Null object reference空对象引用3. Array boundary exceeded数组越界4. Enumerated value is out of range for function枚举值超出函数的范围5. Negative valu...
分类:
其他好文 时间:
2014-10-28 11:52:20
阅读次数:
582
#define PDE_FLG_RW (1<<1)
#define PDE_FLG_US (1<<2)
#define PDE_FLG_RWT (1<<3)
#define PDE_FLG_PCD (1<<4)
/*
* initialize to be zero for page directory and page table
*/
static __SECTION_ZERO_INIT("P...
分类:
其他好文 时间:
2014-10-27 17:37:25
阅读次数:
155
The zero value of a slice isnil.A nil slice has a length and capacity of 0.(To learn more about slices, read theSlices: usage and internalsarticle.)pa...
分类:
其他好文 时间:
2014-10-27 01:42:33
阅读次数:
165
Given an arraySofnintegers, are there elementsa,b,cinSsuch thata+b+c= 0? Find all unique triplets in the array which gives the sum of zero.Note:Elemen...
分类:
其他好文 时间:
2014-10-25 21:24:42
阅读次数:
256
n!=x*b^y,
当x为正整数时,最大的y就是n!末尾0的个数了,
把n,b分别拆成素因子相乘的形式:
例如,
n=5,b=16
n=5,b=2^4,
很明显,末尾0的个数为0
10进制时,n!=a*10^x
b进制时,n!=c*b^y
很明显,n!的位数就是最大的x+1
这里计算我用了log,精度设置为1e-9
#include...
分类:
其他好文 时间:
2014-10-24 20:47:09
阅读次数:
320
WIFEXITED/WEXITSTATUS/WIFSIGNALED If the exit status value (*note Program Termination::) of the childprocess is zero, then the status value reported ....
分类:
其他好文 时间:
2014-10-24 18:24:14
阅读次数:
279
1.team-->share project
2.选择svn
3.选择哪个都可以,,我选择使用已有的资源位置
4.地址,,,在svn服务其上查看。。
(在服务器上的新建的资源库名字上右键,,出现copy url to clipboard)
5.选哪个都可以。。。
6.用户名和密码是服务器分配的。。
7.ok....
分类:
Web程序 时间:
2014-10-24 14:42:53
阅读次数:
184
SQL中的单记录函数1.ASCII返回与指定的字符对应的十进制数(注:是字符而非字符串);SQL> select ascii('A') A,ascii('a') a,ascii('0') zero,ascii(' ') space from dual;A A ZERO SPACE--------- ...
分类:
数据库 时间:
2014-10-22 12:24:45
阅读次数:
273
取值:disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-latin | upper-latin | armenian | georgian...
分类:
其他好文 时间:
2014-10-20 18:58:28
阅读次数:
284
Last non-zero Digit in N!
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 6276 Accepted Submission(s): 1556
Problem Description...
分类:
其他好文 时间:
2014-10-20 08:44:59
阅读次数:
168