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

下载本文档

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

文档简介

名企面试试题程序设计(广东北电)英文笔试题

1.Tranlation(Mandatory)

CDMAvendershaveworkedhardtogiveCDMAroamingcapabilitiesviathedevelopmentofRUIM-essentially,aSIMcardforCDMAhandsetscurrentlybeingdeployedinChinafornewCDMAoperatorChinaUnicom.KoreancellcoKTFdemonstratedearlierthisyeartheabilitytoroambetweenGSMandCDMAusingsuchcards.However,onlythecardcontainingtheuser’sservicedatacanroam-nottheCDMAhandsetortheuser’snumber(exceptviacallforwarding).

2.Programming(Mandatory)

Linkedlist

a.Implementalinkedlistforintegers,whichsupportstheinsertafter(insertanodeafteraspecifiednode)andremoveafter(removethenodeafteraspecifiednode)methods;

b.Implementamethodtosortthelinkedlisttodescendingorder.

3.Debugging(Mandatory)

a.Foreachofthefollowingrecursivemethods,enterYintheanswerboxifthemethodterminaters(assumei=5),OtherwiseenterN.

staticintf(inti){

returnf(i-1)*f(i-1);

}

Ansewr:

staticintf(inti){

if(i==0){return1;}

else{returnf(i-1)*f(i-1);}

}

Ansewr:

staticintf(inti){

if(i==0){return1;}

else{returnf(i-1)*f(i-2);}

}

Ansewr:

b.TherearetwoerrorsinthefollowingJAVAprogram:

staticvoidg(inti){

if(i==1){return;}

if(i%2==0){g(i/2);return;}

else{g(3*i);return;}

}

pleasecorrectthemtomakesurewecangettheprinted-outresultasbelow:

3105168421

中文笔试题

1.汉译英

北电网络的开发者方案使来自于不同组织的开发者,能够在北电网络的平台上开发圆满的补充业务。北电网络合乎工业规范的开放接口,为补充业务的发展引入了无数商机,开发者方案为不同层面的开发者提供不同等级的资格,资格的划分还考虑到下列因素:补充业务与北电网络平台的汇合程度,开发者团体与北电网络的合作关系,等等。

2.编程

将整数转换成字符串:voiditoa(int,char);

示例itoa(-123,s[])那么s=“-123〞;

网易

1、10个人分成4组有几种分法?

2、如图:

78910

61211

54312

16151413

设“1〞的坐标为〔0,0〕“7〞的坐标为〔-1,-1〕编写一个小程序,使程序做到输入坐标〔X,Y〕之后显示出相应的数字。

3、#include

//exampleinputandoutput

//in123out131

//in1234567892100out12345678910021

longmex(longa,longb,longc)

{longd;

if(b==0)return0;

if(b==1)returna%c;

d=mex(a,b/2,c);d*=d;这里忘了;d*=mex(a,b%2,c);d%=c;

returnd;

}

intmain(void)

{longx,y,z;

while(1)

{if(scanf(%d%d%d,&x,&y,&z)>3)return0;

if(xz){printf("toobig");continue;}

if(z>1000000010){printf("toobig");continue}

pr

温馨提示

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

评论

0/150

提交评论