加载中
VIM心得(学习VIM语法:动词、名词和修饰词)

使用VIM就像是在使用“动词 修饰词 对象”方式的缩写来跟你的编辑器对话。 动词有:v(visual 视图), c(change 修改), d(delete 删除), y(yank/copy 拷贝), 这些最重要的,当然还有其它的。 ...

2012/06/08 13:48
439
如何成为优秀的驱动开发工程师

作者:刘旭晖 Raymond转载请注明出处 Email:colorant@163.com BLOG:http://blog.csdn.net/colorant/ 主页:http://sites.google.com/site/rgbbones/ 或许这样的标题,应该是由像Linus或Gre...

什么是 prelink

Most programs require libraries to function. Libraries can be integrated into a program once, by a linker, when it is compiled (static linking) or they can be integrated when th...

把十六进制字符转换成十进制数

/** * Get the hex value of a character (base16). * @param c A character between '0' and '9' or between 'A' and 'F' or * between 'a' and 'f'. * @return An in...

2010/06/17 14:43
538
递归与尾递归

下面两个程序是scheme写的计算阶乘的递归和尾递归实现 线性递归: (define (factorial n) (if (=n 1) 1 (* n (factorial (- n 1))))) 尾递归: (define (factorial n) (fact-iter 1 1 n)) (...

利用牛顿迭代法求平方根

数理介绍,不喜欢数学的言下之意也就是绝大部分人可以略过了。 简单推导 假设f(x)是关于X的函数: 求出f(x)的一阶导,即斜率: 简化等式得到: 然后利用得到的最终式进行迭代运算直至求到一个比...

没有更多内容

加载失败,请刷新页面

没有更多内容

返回顶部
顶部