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

数据结构英文课件:ch01 Programming Principles.ppt

数据结构英文课件:ch01 Programming Principles.ppt

  1. 1、本文档共65页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
* 乘法规则 针对嵌套程序段 T (n, m) = T1 (n) * T2 (m) = O(f (n)*g (m)) 两个并列循环的例子 * void exam (float x[ ][ ], int m, int n) { float sum [ ]; for (int i = 0; i m; i++) { //x中各行 sum[i] = 0.0; //数据累加 for (int j = 0; j n; j++) sum[i] += x[i][j]; } for (i = 0; i m; i++) //打印各行数据和 cout i “ : ” sum [i] endl; } 渐进时间复杂度为 O(max (m*n, m)) 渐近的空间复杂度 S (n) = O(f (n)) * * This chapter involves four parts * Can deal with , the set must have a lot of subset ,such as the subset of digits, characters, strings, pictures, records, music songs, sounds, and so on. If we draw a large circle as the data set, every subset can be represented as a smaller circle, every subset has many objects in it, and also it can have many subsets. Every Data element is an independent individual in the data set. For example, a digital number, a character, a student record and so on. So the number, name, score are three data items of the student record. * A set of data elements, the elements have some relations. For example, there are 9 students in a research group, except a head of the group, the others are divided into four groups, every group have a leader, we can described the data structure as a sketch map like this Another example, a queue of waiting line, every one in the queue has his own location, the relation between them are front and rear. From this example, we can conclude the relations between the data elements are intrinsic, they are not depending on how we stored them in the computer and if it is stored or not. * How to store the elements and the relation between them in a computer the logical relation between the elements are represented by the location relation when they are stored in a block of contiguous memory. Usually we used the data type array in programming language to implement contiguous structure. The logical relation between the elements are re

文档评论(0)

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

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

1亿VIP精品文档

相关文档