摘要:
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. 阅读全文
摘要:
Both C and C++ support signed(the default) and unsigned numbers, and Java support only signed numbers. 阅读全文
摘要:
《深入理解计算机系统》在P105页,作者给出了INT_MIN在标准头文件limits.h中的定义
#define INT_MAX 2147483647
#define INT_MIN (-INT_MAX - 1) 阅读全文
摘要:
DP is a kind of tabular method, like divide-and-conquer method, applying when subproblems overlap.(sharing subsubproblems). 阅读全文
摘要:
总结有两点记下:
1.结构体的长度一定是最长数据元素大小的整数倍;
2.各成员变量存放的起始位置 相对于 结构体的地址 的偏移量 必须为该变量的类型所占字节数的倍数。 阅读全文
摘要:
方向导数放映了在方向l上z=f(x,y)的变化率,其中方向l指x-y平面上的沿着某一直线的方向,而梯度指在x-y平面内f(x,y)的最大变化率的方向。 阅读全文
摘要:
一些免费的服务器可以将公式转换为图片,前提是进入HTML编辑页面,即要支持HTML编程。缺点:速度慢 阅读全文