名企面试试题程序设计(广东北电)_第1页
名企面试试题程序设计(广东北电)_第2页
名企面试试题程序设计(广东北电)_第3页
名企面试试题程序设计(广东北电)_第4页
名企面试试题程序设计(广东北电)_第5页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1 / 5 名企面试试题程序设计 (广东北电 ) 英文笔试题 1. Tranlation (Mandatory) CDMA venders have worked hard to give CDMA roaming capabilities via the development of RUIM-essentially, a SIM card for CDMA handsets currently being deployed in China for new CDMA operator China Unicom. Korean cellco KTF demonstrated earlier this year the ability to roam between GSM and CDMA using such ,only the card containing the user s service data can roam-not the CDMA handset or the user s number (except via call forwarding). 2. Programming (Mandatory) Linked list a. Implement a linked list for integers,which supports the insertafter (insert a node after a specified node) and removeafter (remove the node after a specified node) methods; b. Implement a method to sort the linked list to descending order. 2 / 5 3. Debugging (Mandatory) a. For each of the following recursive methods,enter Y in the answer box if themethod terminaters (assume i=5), Otherwise enter N. static int f(int i) return f(i-1)*f(i-1); Ansewr: static int f(int i) if(i=0)return 1; else return f(i-1)*f(i-1); Ansewr: static int f(int i) if(i=0)return 1; else return f(i-1)*f(i-2); Ansewr: b. There are two errors in the following JAVA program: static void g(int i) if(i=1)return; 3 / 5 if(i%2=0)g(i/2);return; else g(3*i);return; please correct them to make sure we can get the printed-out result as below: 3 10 5 16 8 4 2 1 中文笔试题 1汉译英 北电网络的开发者计划使来自于不同组织的开发者,能够在北电网络的平台上开发圆满的补充业务。北电网络符合工业标准的开放接口,为补充业务的开展引入了无数商机,开发者计划为不同层面的开发者提供不同等级的资格,资格的划分还考虑到以下因素:补充业务与北电网络平台的集合程度,开发者团体与北电网络的合作关系,等等。 2编程 将整数转换成字符串: void itoa(int,char); 例如 itoa(-123,s)则 s=“ -123” ; 网易 1、 10个人分成 4 组 有几种分法? 4 / 5 2、如图: 7 8 9 10 6 1 2 11 5 4 3 12 16 15 14 13 设“ 1”的坐标为( 0, 0) “ 7”的坐标为( 1, 1) 编写一个小程序,使程序做到输入坐标( X,Y)之后显示出相应的数字。 3、 #include /example input and output /in 1 2 3 out 1 3 1 /in 123456789 2 100 out 123456789 100 21 long mex(long a,long b,long c) long d; if(b=0) return 0; if(b=1) return a%c; d=mex(a,b/2,c) ; d*=d; 这 里 忘了 ;d*=mex(a,b%2,c);d%=c; return d; int main(void) long x,y,z; 5 / 5 while(1) if(scanf(%d %d %d,&x,&y,&z)3) return 0; if(xz) printf(too big );continue; if(z1000000010) printf(too big );continue

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论