- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Contents Chapter1 : a Java prime( please review the key points by yourselves) Basics of objects and classes Inheritance Polymorphism Abstract classes Interfaces Generics String StringTokenizer, Scanner, ArrayList Chapter2-15: many sophisticated data structures; the book introduces every data structure follow the four steps: Introduce its properties and use it in an application. Present a public interface that implements the data structure. Further illustrate the use of the data structure in the application. Design and implement the data structure and analyze the running time. Chapter 2 The Big Picture Overview The big picture answers to several questions. What are data structures? What data structures do we study? What are Abstract Data Types? Why Object-Oriented Programming (OOP) and Java for data structures? How do I choose the right data structures? 2.1 What Are Data Structures 2.1 What Are Data Structures A data structure is an aggregation of data components that, together, constitute a meaningful whole, that is a Collection of relational Data Elements(数据结构是由具有特定逻辑意义的数据元素构成的集合) The components themselves may be data structures.(数据元素本身也可以是数据结构) Stops at some “atomic” unit. 2.1 What Are Data Structures The definition of “atomic” unit depends on the observer. As a reader, the characters that make up a word is the atomic unit. One who prints the paper, what goes into making that character appear on the page in. 用计算机处理应用问题,即是计算机存储数据、操作数据的过程。 最简单的人事管理系统,用于存储单位每位职工的多项信息,增加删除职工,查询职工等。可以一个数组存放这些职工信息。 2.2 What Data Structures Do We Study? An array is an aggregation of entries that are arranged in contiguous fashion with the provision of a single-step random access to any entry.(数组:若干元素的集合,这些元素以顺序存储,能确保对其中任何元素进行随机存储) There are numerous other situations where more sophisticated data structures are required.(还有许多其他典型的数据结构) Data structure categories Based on how the data is conceptually organized or aggregated, on the different intrinsic relations between data elements
文档评论(0)