摘要: 想雇到搞软件开发的聪明人可不容易。万一一不小心,就会搞到一堆低能大狒狒。我去年就碰到这种事了。你肯定不想这样吧。听我的,没错。在树上开站立会议门都没有。问点有难度的问题能帮你把聪明人跟狒狒们分开。我决定把我自己整理出来的软件开发者面试百问发出来,希望能帮到你们的忙。这个列表涵盖了软件开发知识体系中定义的大多数知识域。当然,如果你只想找出类拔萃的程序员,便只需涉及结构、算法、数据结构、测试这几个话题... 阅读全文
posted @ 2009-01-20 21:25 HonestMan 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 现在每天用着高级语言编写着业务软件,渐渐感觉远离0,1了。不懂0,1一样写的很好的程序,但时常感觉心里很空,以前都是冲低级语言向高级语言。最近有种由高向低的进发,今天写个小程序纪念下:这个程序实现了对一个整数某位的判断,这里用了C#的索引。using System;using System.Collections.Generic;using System.Text;namespace bits{ ... 阅读全文
posted @ 2008-04-08 20:48 HonestMan 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 我这是给公司内部推荐,把你推荐成功我有伯乐奖,到时候别眼红就行。简历发到这:billgatesnomoney@gmail.com 下面是要求:Beijing Positions:1. Sr. Software Engineer Location: BeijingRESPONSIBILITIES:Contributing to Subscriber Data Management products ... 阅读全文
posted @ 2007-11-30 14:21 HonestMan 阅读(1086) 评论(0) 推荐(0) 编辑
摘要: 水木社区 → Linux系统与应用 → 阅读文章LinuxApp 版 con,392,405810[上一篇] [下一篇] [同主题上篇] [同主题下篇]发信人: Dieken (风催草低), 信区: LinuxApp标 题: debian的一句话问答【2007-04-23】发信站: 水木社区 (Wed Sep 20 12:46:26 2006), 站内发信人: qiyu (... 阅读全文
posted @ 2007-10-18 20:32 HonestMan 阅读(457) 评论(0) 推荐(0) 编辑
摘要: Job Type:Fulltime Contact:shu.ping.gao@oracle.comPlease submit both of your Chinese and English resumes and specify which position want to apply. Attention 1.External emails may be rejected, thus you ... 阅读全文
posted @ 2007-10-16 15:43 HonestMan 阅读(254) 评论(0) 推荐(0) 编辑
摘要: voidInsertMethod(char[] la, int n){for(int i=2; i<n; i++){//watch outla[0]=la[i];//if(la[i]<la[i-1]){for(int j=i-1; la[0]<la[j]; j--);la[j+1]=la[j];la[j+1]=la[0];}}}//////////////////////// 阅读全文
posted @ 2007-09-26 17:07 HonestMan 阅读(182) 评论(0) 推荐(0) 编辑
摘要: _______| | 1-->2-->3-->42 is the node that we want.struct node *FindNode(struct node **La){struct node *current=*La; struct node *last=*La;//point to lastnode;while(last->next>last){las... 阅读全文
posted @ 2007-09-25 14:30 HonestMan 阅读(217) 评论(0) 推荐(0) 编辑
摘要: a[0],a[1],a[2],a[1],a[1]1 2 3 4 5balance noe is 3C:int BalanceNode(int *a, int length){int *begin=a, *end=a+length;int leftsum=0, rightsum=0;int position=0;while(position<length){rightsum+=a[positi... 阅读全文
posted @ 2007-09-24 21:31 HonestMan 阅读(163) 评论(0) 推荐(0) 编辑
摘要: "Everyone has a photographic memory. Some people just don't have film."— Mel Brooks 阅读全文
posted @ 2007-09-24 09:20 HonestMan 阅读(128) 评论(0) 推荐(0) 编辑
摘要: Given two lists, merge their nodes together to make one list, taking nodes alternately between the two lists. So ShuffleMerge() with {1, 2, 3} and {7, 13, 1} should yield {1, 7, 2, 13, 3, 1}. If eithe... 阅读全文
posted @ 2007-09-23 12:02 HonestMan 阅读(238) 评论(0) 推荐(0) 编辑