计算机算法导论_第2章.ppt

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

Introduction to Algorithms 计算机算法导论 2007~2008年第一学期 Quiz(10 minutes) Question Suppose we are comparing implementations of insertion sort and merge sort on the same machine. For inputs of size n, insertion sort runs in 8n2 steps, while merge sort runs in 64nlgn steps. For which values of n does insertion sort beat merge sort? What is the smallest value of n such that an algorithm whose running time is 100n2 runs faster than an algorithm whose running time is 2n on the same machine? 2、Getting Started Question Introducing the insertion sort algorithm to solve the solving problem Analyzing its running time Designing the algorithm by the divide-and-conquer approach 2.1、Insertion sort Problem Input: sequence a1, a2, …, an of numbers. Output: permutation a1, a2, …, ansuch that a1 ≤ a2 ≤ … ≤ an . Example: Input: 8 2 4 9 3 6 Output: 2 3 4 6 8 9 Pseudocode Difference between pseudocode and real code Pseudocode is more clear and concise Sometimes, in English Pseudocode is not typically concerned with issue of software engineering Pseudocode conventions Indentation indicates block structure The looping constructs while, for and repeat and the conditional constructs if, then and else have interpretations similar to those in Pascal The “ ” indicates a comment A multiple assignment Varibles are local to the given procedure A[1..j] Field [objects] indicates compound data, A variable representing an array or object is treated as a pointer, and NIL pointer Parameters are passed to a procedure by value The boolean operators is short circuiting Pseudcode 2.1、Insertion sort 1.1、Algorithms Correct and incorrect algorthms The specification of an algorthm In english A computer program A hareware design Loop invariants Initialization: It is true prior to the first iteration of the loop Maintenance: If it is true before an iteration, it remains true before the next iteration Termination: When the loop terminates, the invariant can helps show that the algorithm is correct The

文档评论(0)

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

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

1亿VIP精品文档

相关文档