If tomorrow never comes

The meaning of life is creation,which is independent an boundless.

导航

2009年3月13日

摘要: 递归: 递归是一种重要的编程技术。该方法用于让一个函数从其内部调用其自身。一个示例就是计算阶乘。0 的阶乘被特别地定义为 1。 更大数的阶乘是通过计算 1 * 2 * ...来求得的,每次增加 1,直至达到要计算其阶乘的那个数。 C#实现N! Code highlighting produced by Actipro CodeHighlighter (freeware) http://ww... 阅读全文

posted @ 2009-03-13 15:27 Brucegao 阅读(178) 评论(0) 推荐(0) 编辑

摘要: 下面是我用C++实现的一个回文判定算法: Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ -->#include #include using namespace std; bool Find(char *p,int length) {... 阅读全文

posted @ 2009-03-13 15:22 Brucegao 阅读(626) 评论(1) 推荐(0) 编辑

摘要: 面试题目:判定一个字符串是不是回文,例如:“ABA”,"ABBA"代码:[代码]以上是昨天参加中软国际面试时候的一道题目,我是按上面的思路和代码写的,但是面试官说有问题,注:面试官是一个QA有哪位牛人知道问题出在哪里,欢迎指正。 阅读全文

posted @ 2009-03-13 15:18 Brucegao 阅读(949) 评论(5) 推荐(0) 编辑