网站大量收购独家精品文档,联系QQ:2885784924

(精品课件)第六次chapter6作业(11.4评讲).doc

(精品课件)第六次chapter6作业(11.4评讲).doc

  1. 1、本文档共4页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
(精品课件)第六次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

文档评论(0)

yan698698 + 关注
实名认证
内容提供者

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

1亿VIP精品文档

相关文档