摘要: Adding two positive integers can yield a negative result, and the comparation xy can yield a different result with the comparation x-y0. This properties are caused by the finite nature of computer arithmetic. 阅读全文
posted @ 2013-01-16 16:36 winko 阅读(316) 评论(0) 推荐(0) 编辑
摘要: Both C and C++ support signed(the default) and unsigned numbers, and Java support only signed numbers. 阅读全文
posted @ 2013-01-15 15:46 winko 阅读(476) 评论(0) 推荐(0) 编辑
摘要: 《深入理解计算机系统》在P105页,作者给出了INT_MIN在标准头文件limits.h中的定义 #define INT_MAX 2147483647 #define INT_MIN (-INT_MAX - 1) 阅读全文
posted @ 2013-01-15 15:28 winko 阅读(1357) 评论(0) 推荐(1) 编辑
摘要: windows栈结构:向低地址处增长 阅读全文
posted @ 2013-01-07 15:04 winko 阅读(825) 评论(0) 推荐(0) 编辑
摘要: DP is a kind of tabular method, like divide-and-conquer method, applying when subproblems overlap.(sharing subsubproblems). 阅读全文
posted @ 2012-12-31 22:23 winko 阅读(376) 评论(0) 推荐(0) 编辑
摘要: 总结有两点记下: 1.结构体的长度一定是最长数据元素大小的整数倍; 2.各成员变量存放的起始位置 相对于 结构体的地址 的偏移量 必须为该变量的类型所占字节数的倍数。 阅读全文
posted @ 2012-12-21 12:16 winko 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 方向导数放映了在方向l上z=f(x,y)的变化率,其中方向l指x-y平面上的沿着某一直线的方向,而梯度指在x-y平面内f(x,y)的最大变化率的方向。 阅读全文
posted @ 2012-10-25 10:38 winko 阅读(1015) 评论(0) 推荐(0) 编辑
摘要: 一些免费的服务器可以将公式转换为图片,前提是进入HTML编辑页面,即要支持HTML编程。缺点:速度慢 阅读全文
posted @ 2012-10-23 12:31 winko 阅读(491) 评论(0) 推荐(0) 编辑