广东北电英文笔试题(请大家回复作答)1.Tranlation(Mandatory)CDMA.doc

广东北电英文笔试题(请大家回复作答)1.Tranlation(Mandatory)CDMA.doc

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
广东北电英文笔试题(请大家回复作答) 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 cards.However,only the card containing the user’s service data can roam-not the CDMA handset or the user’s number (except via call forwarding). 作答(仅供参考) 1 翻译题(必答) CDMA 厂商们已经竭力开发出一种用于CDMA手机上使用的名为RUIM的SIM卡,进而能够使CDMA漫 游,这种为中国联通开发的新CDMA上使用的SIM卡在中国进一步开发与推广,韩国KTF公司在今年年初 向公众展示其采用此卡在GSM与CDMA间进行漫游,尽管如此, 也只有那些含有用户服务数据的卡才能实 现漫游功能, 相反那些一般的CDMA手机或只含有用户手机号的是不行的(除非通过转移) 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. 编程题(必答) 链表 a 实现一个整数链表, 并支持插入运算(在给定的结果后插入)和删除运算(移除给定的结点), b 实现一个方法来对链表进行除序排序; // 单链表结构体为 typedef struct LNode { int data; struct LNode *next; }LNode, *pLinkList; // 单链表类 class LinkList { private: pLinkList m_pList; int m_listLength; public: LinkList(); ~LinkList(); bool InsertAfter(int afternode, int data);//插入 bool RemoveAfter(int removenode);//删除 void sort();//排序 }; 实现方法 //insert a node after a specified node bool LinkList::InsertAfter(int afternode, int data) { LNode *pTemp = m_pList; int curPos = -1; if (afternode m_listLength ) // 插入点超过总长度 { return false; } while (pTemp != NULL) // 找到指定的节点 { curPos++; if (curPos == afternode) break; pTemp = pTemp-next; } if (curPos != afternode) // 节点未寻到,错误退出 { return false; } LNode *newNode = new LNode; // 将新节点插入指定节点后 newNode-data = data; newNode-next = pTemp-next; pTemp-next = newNode; m_listLength++; return true; } //remove the node after a specified node bool Li

文档评论(0)

170****0532 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

版权声明书
用户编号:8015033021000003

1亿VIP精品文档

相关文档