08 2006 档案

一些 Java 语言的基础细节
摘要: 从网上找的一篇关于 Java 语言的一些基础细节问题,其实是以前一些公司招人时用的面试或者笔试题目,有些内容还是值得一看的。不过,粗略的看过一遍后感觉有些东西讲的还是不清楚,以后再仔细的查查吧。阅读全文
posted @ 2006-08-25 22:50 ScorpioLove 阅读(93) | 评论 (0) 编辑
Some good articles for me
posted @ 2006-08-25 21:14 ScorpioLove 阅读(30) | 评论 (0) 编辑
Vim 命令
摘要: 用 Vim 已经好长时间了,虽然还是有很多东西不习惯也不明白,但已经体会到它的方便之处,找了一个同学的 Vim 命令集,继续慢慢学慢慢用吧。不过这个命令集整理得有点乱,修改多次了还是不系统,太零碎了,将就点算了:)。阅读全文
posted @ 2006-08-23 12:08 ScorpioLove 阅读(737) | 评论 (0) 编辑
Big Integer Multiplication
摘要: Recently, I began to review data structure and algorithms. Basicly I followed cuifenghui's steps. Yesterday I viewed his Big Integers Multiplication programs. Well, the idea is easy and great: use two char arrays to store two big numbers, then multiply them byte by byte. The following is my java version of his code.阅读全文
posted @ 2006-08-23 11:16 ScorpioLove 阅读(70) | 评论 (0) 编辑