2014年5月11日
摘要: 2014-05-11 23:52题目链接原题:design an alarm clock for a deaf person.题目:为聋人设计闹钟?解法:聋人听不见,那么闪光、震动都可行。睡着的人也看不见光,所以震动应该是更靠谱的。个人觉得做成手表戴在手上的时候,才能保证震动有用。这样,睡觉的时候就... 阅读全文
posted @ 2014-05-11 23:57 zhuli19901106 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 2014-05-11 05:55题目链接原题:difference between thread and process.题目:请描述进程和线程的区别。解法:操作系统理论题。标准答案在恐龙书上,我自己回忆了一点。我想就算是面试官也不会一字一句地要求你背书的,对于要点掌握住就可以了。代码: 1 // ... 阅读全文
posted @ 2014-05-11 06:29 zhuli19901106 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 2014-05-11 05:29题目链接原题:Design remote controller for me.题目:设计一个遥控器。解法:遥控什么?什么遥控?传统的红外线信号吗?我只能随便说说思路吧。不知道这算什么类型的面试题,真遇到的话也算是倒了霉了。想了半天恍然大悟:原来是考察设计模式。查了相关... 阅读全文
posted @ 2014-05-11 05:34 zhuli19901106 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 2014-05-11 05:21题目链接原题:Complexity of a function: int func_fibonacci ( int n) { if (n < 2) { return n; } else { return ( func_fibonacci(n-1) + func_fib... 阅读全文
posted @ 2014-05-11 05:25 zhuli19901106 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 2014-05-11 03:56题目链接原题:Given an integer array. Perform circular right shift by n. Give the best solution.题目:给数组进行循环移位,给出最优解。解法:首先要考虑n的范围,对于负数和超过数组长度的数... 阅读全文
posted @ 2014-05-11 05:18 zhuli19901106 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 2014-05-11 03:37题目链接原题:You have three jars filled with candies. One jar is filled with banana candies, one jar is filled with lemon candies and one ja... 阅读全文
posted @ 2014-05-11 03:48 zhuli19901106 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 2014-05-11 02:56题目链接原题:Write a function called FooBar that takes input integer n and prints all the numbers from 1 upto n in a new line. If the number... 阅读全文
posted @ 2014-05-11 03:12 zhuli19901106 阅读(252) 评论(0) 推荐(0) 编辑