版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、论题1-4:算法的基本结构陶先平 马骏南京大学轻轻提,慢慢移,先开窗,再喝汤吃一只汤包的“算法”顺序很重要:将包子从蒸笼中轻轻提起,and then将包子慢慢移动到面前的碟子中,and then在包子的上方咬开一个小口,and then通过小口吸食包子里的汤,and then将包子送入口中完成!顺序顺序,是组织算法的最基本的方法按照算法步骤,顺序顺序书写指令冯诺依曼体系结构程序存储,顺序执行程序存储,顺序执行John Von Neumann19031957计算机之父如何理解下面这句话? My second remark is that our intellectual powers are r
2、ather geared to master static relations and that our powers to visualize processes evolving in time are relatively poorly developed. For that reason we should do our utmost to shorten the conceptual gap between the static program and the dynamic process, to make the correspondence between the progra
3、m (spread out in text space) and the process (spread out in time) as trivial as possible. -E.W.Dijkstra/wiki/Edsger_W._Dijkstra 问题2:但是我们并不只吃一只,怎么办?Bound iteration假如规定吃X只X如果即使饱了,也希望再品尝一个,该怎么办?Unbound iteration问题:你能正确选择采用何种策略设计循环吗?有人知道饱不饱,但有人不知道if(c1) else if(c2) else ifelse swi
4、tch( X) case 1:break; case 2:break; default:问题问题:如果要判断的情况不只有两种,该怎么办?问题: 如果说顺序、分支和循环构成了算法组织的三个基本结构,那么顺序结构是算法组织的基本中的基本。为什么?嵌套结构:循环嵌套冒泡排序的算法描述下例的循环正确吗?QUOTE:Vector list(n); / n is some positive integerint k, indexMax;indexMax = 0;for(k = 1; k listindexMax)indexMax = k;如何确定循环过程是正确的?循环不变式(循环不变量): 一个逻辑表达式
5、 该表达式通常可用来表征循环的功能 循环初始 时为真 在循环执行过程中始终为“真” 循环结束时,必定为真下例循环的循环不变式是什么吗?QUOTE:Vector list(n); / n is some positive integerint k, indexMax;indexMax = 0;for(k = 1; k listindexMax)indexMax = k;冒泡排序的循环不变量是什么?关于Goto语句#includestdio.hint main(void) int n=0; printf(input a string :n);loop: if(getchar()!=n) n+; g
6、oto loop; printf(%d,n); Goto语句#include int main(void) int i, j, k; for (i = 0; i 10; i+) for (j = 0; j 10; j+) for (k = 0; k 10; k+) if (i + j + k = 10) break; printf(%d %d %d, i, j, k); #include int main(void) int i, j, k; for (i = 0; i 10; i+) for (j = 0; j 10; j+) for (k = 0; k 10; k+) if (i + j
7、+ k = 10) goto exit_for; exit_for: printf(%d %d %d, i, j, k);如果不加限制地使用goto语句: 面条式的程序: 文本空间中的程序: 下锅前的面条 运行中的执行序列: 下锅后的面条 难以想象! 文本空间和时间空间上巨大的gap重新阅读下面这句话? My second remark is that our intellectual powers are rather geared to master static relations and that our powers to visualize processes evolving i
8、n time are relatively poorly developed. For that reason we should do our utmost to shorten the conceptual gap between the static program and the dynamic process, to make the correspondence between the program (spread out in text space) and the process (spread out in time) as trivial as possible. -E.
9、W.Dijkstra顺序结构、分支结构、循环结构这三种结构产生的gap?Goto结构产生的gap?理解并记住:Why?何为:控制结构的表达能力 Various minimal sets of control structures have been identified, meaning that in certain technical senses other control structures can be replaced by appropriate combinations of those in the minimal set, so that in practice thes
10、e are the only ones needed./wiki/Niklaus_Wirth 一种新的算法组织方法:子程序(过程,函数)问题:什么情况下,我们会想到用过程来“封装”一段算法?问题:过程通常都有一种叫“形式参数”的东西,你能从“过程的参数”中想到什么?一种新的算法组织方法:子程序(过程,函数) 过程的优点: 复用 封装 抽象 丰富了算法结构: 顺序、 分支、循环 调用递归:自己调用自己的过程 例题:从一个数列中,怎样找到最大的数?问题:为什么这个问题能够用递归的方法问题:为什么这个问题能够用递归的方法去思考?去思考?Int FindMax(A,i,j) If(i=j) return Ai;CandMax=FindMax(A,i+1,j); If(Ai=CandMax) then return CandMaxelse return Ai;在设计递归函数的在设计递归函数的型构时,我们需要型构时,我们需要注意什么?注意什么?在算法中调用递归在算法中调
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2024工程队建房施工承包合同范本参考范文
- 2024至2030年中国水箱清洁剂数据监测研究报告
- 2024至2030年中国防静电彩色环氧地坪数据监测研究报告
- 2024至2030年中国汽缸体数据监测研究报告
- 2024至2030年中国多功能震压制砖机行业投资前景及策略咨询研究报告
- 医疗男科培训
- 人民银行3号令培训
- 内蒙古巴彦淖尔市(2024年-2025年小学五年级语文)统编版专题练习(下学期)试卷及答案
- 湖北省宜昌市(2024年-2025年小学五年级语文)人教版专题练习((上下)学期)试卷及答案
- 水利水电锅炉更换工程合同
- 乔(小学数学课程标准解读)
- (15.5)-专题五 第七讲 社会基本矛盾的历史作用
- 《一线带班》读书分享
- 腾讯广告营销顾问(中级)考试必备题库(含答案)
- 连接器手册(中文版)
- 多囊卵巢综合征的中西医诊疗方法-课件
- 带电宝典-配网不停电作业绝缘遮蔽
- 人教版英语八年级上册-Unit-8-Grammar-Focus教学课件
- 小儿麻醉并发症
- (完整版)硬件单板测试模板
- 现代电化学电化学基础
评论
0/150
提交评论