- 1、本文档共4页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
(精品课件)第二次作业(9.22评讲)
P56 Exercise 2.1 E4(a)(b)
(a) For n = 3, find all possible permutations that can be obtained.
There are five permutations:
1 2 3 1 3 2 2 1 3 3 2 1 3 1 2.
(b) For n=4, find all possible permutations that can be obtained.
There are 14 such permutations:
1 2 3 4 1 2 4 3 1 3 2 4 1 4 2 3 1 4 3 2 2 1 3 4 2 1 4 3
3 1 2 4 3 2 1 4 4 1 2 3 4 1 3 2 4 2 1 3 4 3 1 2 4 3 2 1
(c)C(2n,n)
P64 Exercise 2.2 E2, E4
E2. Start with the stack methods, and write a function copy_stack with the following specifications:
Error_code copy_stack(Stack dest, Stack source);
precondition: None.
postcondition: Stack dest has become an exact copy of Stack source; source is unchanged.
If an error is detected, an appropriate code is returned; otherwise, a code of
success is returned.
(a) Simply use an assignment statement: dest = source;
Answer
Error_code copy_stack(Stack dest, Stack source)
/* Pre: None.
Post: Stack dest has become an exact copy of Stack source; source is unchanged. If an error is
detected, an appropriate code is returned; otherwise, a code of success is returned. */
{
dest = source;
return success;
}
(b) Use the Stack methods and a temporary Stack to retrieve entries from the Stack source and add each
entry to the Stack dest and restore the Stack source.
Answer
Error_code copy_stack(Stack dest, Stack source)
/* Pre: None.
Post: Stack dest has become an exact copy of Stack source; source is unchanged. If an error is
detected, an appropriate code is returned; otherwise, a code of success is returned. */
{
Error_code detected = success;
Stack temp;
Stack_entry item;
while (detected == success !source.empty( )) {
detected = source.top(item);
detected = source.pop( );
if (detected == success) detected = temp.push(item);
}
while (detected == success !temp.empty( )) {
detected = temp.top(item);
detected = temp.pop( );
if (detected == success) detected = source.push(item);
if (detected == success) detected = dest.push(item);
}
return detected;
}
(c) Write the function as
您可能关注的文档
- 忠县新生镇镇区粮食收储公司地块修建性详细规划说明书.doc
- 年产100台DZL1-0.8-AⅡ型锅炉项目可行性研究报告.doc
- 朱(沱)松(溉)产业带港口物流园区可行性研究报告.doc
- (教育学原理)康永久 第三讲 教育的历史发展.ppt
- (教育学原理)简明中国教育史课件12.ppt
- (教育学原理)简明中国教育史课件10.ppt
- (教育学原理)简明中国教育史课件7.ppt
- (教育学原理)简明中国教育史课件5.ppt
- 建筑系高年级学生出国留学意向调研报告2.pdf
- (教育学原理)简明中国教育史课件3.ppt
- 中考语文复习专题二整本书阅读课件.ppt
- 中考语文复习积累与运用课件.ppt
- 2025年初中学业水平考试模拟试题(二)课件.ppt
- 四川省2015届理科综合试题48套第12套.pdf
- 【课件】战争与和平—美术作品反映战争+课件-2024-2025学年高中美术湘美版(2019)美术鉴赏.pptx
- 【课件】青春牢筑国家安全防线 课件 2024-2025学年高中树立总体国家安全观主题班会.pptx
- 【课件】原始人的创造+课件高中美术湘美版(2019)美术鉴赏.pptx
- 上海证券-美容护理行业周报:流量加快去中心化,强运营头部品牌影响较小 -2024-.pdf
- T_CSEIA 1005—2023_能源工业互联网平台数据治理要求.pdf
- T_CDSA 504.16-2023_急流救援技术培训与考核要求.pdf
文档评论(0)