Linear Lists – Array Representation.PPT

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

* Linear Lists – Array Representation CSE, POSTECH * Introduction Data Object a set of instances or values Examples: Boolean = {false, true} Digit = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} Letter = {A, B, C, …, Z, a, b, c, …, z} String = {a, b, …, aa, ab, ac,…} An individual instance is either primitive or composite. An element is the individual component of a composite instance. * Introduction Data Structure data object together with the relationships among instances and elements that comprise an instance Among instances of integer 369 370 280+4 = 284 Among elements that comprise an instance 369 3 is more significant than 6 3 is immediately to the left of 6 9 is immediately to the right of 6 * Introduction Abstract Data Type (ADT) ADT is a collection of data and a set of operations that can be performed on the data. It enables us to think abstractly about the data … We can separate concepts from implementation. Typically, we choose a data structure and algorithms that provide an implementation of an ADT. * Linear List Definitions Linear list is a data object whose instances are of the form (e1,e2,…,en) ei is an element of the list. e1 is the first element, and en is the last element. n is the length of the list. When n = 0, it is called an empty list. e1 comes before e2, e2 comes before e3, and so on. Examples student names order by their alphabets a list of exam scores sorted by descending order * ADT for Linear List AbstractDataType LinearList { instances ordered finite collections of zero or more elements operations Create(): create an empty linear list Destroy(): erase the list IsEmpty(): return true if empty, false otherwise Length(): return the list size Find(k,x): return the kth element of the list in x Search(x): return the position of x in the list Delete(k,x): delete the kth element and return it in x Insert(k,x): insert x just after the kth element Output(out): put the list into the output stream out } * Implementations of Linear Li

文档评论(0)

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

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

1亿VIP精品文档

相关文档