- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
(精品课件)第六次chapter6作业(11.4评讲)
P232 E6.2 E3. Write C++ functions to implement the following operations for the (?rst) simply linked implementation of a list: (k) remove template class List_entry Error_code ListList_entry :: remove(int position, List_entry x) { NodeList_entry *prior, *current; if (count == 0) return fail; if (position 0 | | position = count) return range_error; if (position 0) { prior = set_position(position ? 1); current = prior-next; prior-next = current-next; } else { current = head; head = head-next; } x = current-entry; delete current; count??; return success; } E5. Indicate which of the following functions are the same for doubly linked lists (as implemented in this section) and for simply linked lists. For those that are different, write new versions for doubly linked lists. Be sure that each function conforms to the specifications given in Section 6.1. Parts (f) through (h) all remain the same as for simply linked lists. (e) template class List_entry void ListList_entry :: clear( ) /* Post: The List is cleared. */ { NodeList_entry *p, *q; if (current == NULL) return; for (p = current-back; p; p = q) { q = p-back; delete p; } for (p = current; p; p = q) { q = p-next; delete p; } count = 0; current = NULL; current_position = ?1; } E3. Write implementations for the remaining String processing functions. (b) void strncpy(String copy, const String original, int n); void strncpy(String copy, const String original, unsigned n) /* Post: Copies the first n characters of String original to make String copy. */ { const char *temp = original.c_str( ); char *s = new char[n+1]; strncpy(s, temp, n); s[n] = 0; copy = s; delete []s; } 3.join two ordered list in a List, Error_code Join(List a_list,List b_list,List c_list) example : a_list=(1,3,5,7,9) b_list=(2,4,7,10,13) After the joint,c_list=(1,2,3,4,5,7,7,9,10,13) template class List_entry Error_code Join(List List_entry a_list, ListList_entry b_list, List List_entry c_list) { int i,j,k; c_list.clear(); i=0;j=0;k=0; while (ia_lis
您可能关注的文档
最近下载
- 教案:ABB[a]-J-8ABB机器人高级编程.docx VIP
- 中国慢性冠脉综合征患者诊断及管理指南2024版解读.pptx
- 优秀工程项目管理经验分享.pptx VIP
- JGJT117-2019民用建筑修缮工程查勘与设计标准.docx VIP
- 2021年5月江苏省苏州工业园区初三调研(中考一模)英语试卷及答案.pdf VIP
- 【PDF】2022 年职业教育国家级教学成果奖申报.pdf VIP
- 电机基础知识入门 [(日)井出万盛 著] 2012年_部分10.pdf VIP
- 湘教版七年级地理上册第三章第二节气温和降水课件(共27张PPT)讲解.ppt VIP
- 科研项目中期检查报告书.docx VIP
- 丹江口水库现代化运行管理矩阵构建实践.docx VIP
文档评论(0)