计算机科学概论 第8版,计算机科学概论原版课件(第九版)-8.ppt

《计算机科学概论原版课件(第九版)-8.ppt》由会员分享,可在线阅读,更多相关《计算机科学概论原版课件(第九版)-8.ppt(48页珍藏版)》请在人人文库网上搜索。

1、Chapter 8,Data Abstractions, 2007 Pearson Addison-Wesley. All rights reserved,Chapter 8: Data Abstractions,8.1 Data Structure Fundamentals 8.2 Implementing Data Structures 8.3 A Short Case Study 8.4 Customized Data Types 8.5 Classes and Objects 8.6 Pointers in Machine Language,Basic Data Structures,。

2、Homogeneous array Heterogeneous array List Stack Queue Tree,Figure 8.1 Lists, stacks, and queues,Terminology for Lists,List: A collection of data whose entries are arranged sequentially Head: The beginning of the list Tail: The end of the list,Terminology for Stacks,Stack: A list in which entries ar。

3、e removed and inserted only at the head LIFO: Last-in-first-out Top: The head of list (stack) Bottom or base: The tail of list (stack) Pop: To remove the entry at the top Push: To insert an entry at the top,Terminology for Queues,Queue: A list in which entries are removed at the head and are inserte。

4、d at the tail FIFO: First-in-first-out,Figure 8.2 An example of an organization chart,Terminology for a Tree,Tree: A collection of data whose entries have a hierarchical organization Node: An entry in a tree Root node: The node at the top Terminal or leaf node: A node at the bottom,Terminology for a。

5、 Tree (continued),Parent: The node immediately above a specified node Child: A node immediately below a specified node Ancestor: Parent, parent of parent, etc. Descendent: Child, child of child, etc. Siblings: Nodes sharing a common parent,Terminology for a Tree (continued),Binary tree: A tree in wh。

6、ich every node has at most two children Depth: The number of nodes in longest path from root to leaf,Figure 8.3 Tree terminology,Additional Concepts,Static Data Structures: Size and shape of data structure does not change Dynamic Data Structures: Size and shape of data structure can change Pointers:。

7、 Used to locate data,Figure 8.4 Novels arranged by title but linked according to authorship,Storing Arrays,Homogeneous arrays Row-major order versus column major order Address polynomial Heterogeneous arrays Components can be stored one after the other in a contiguous block Components can be stored 。

8、in separate locations identified by pointers,Figure 8.5 The array of temperature readings stored in memory starting at address x,Figure 8.6 A two-dimensional array with four rows and five columns stored inrow major order,Figure 8.7 Storing the heterogeneous array Employee,Storing Lists,Contiguous li。

9、st: List stored in a homogeneous array Linked list: List in which each entries are linked by pointers Head pointer: Pointer to first entry in list NIL pointer: A “non-pointer” value used to indicate end of list,Figure 8.8 Names stored in memory as a contiguous list,Figure 8.9 The structure of a link。

10、ed list,Figure 8.10 Deleting an entry from a linked list,Figure 8.11 Inserting an entry into a linked list,Storing Stacks and Queues,Stacks usually stored as contiguous lists Queues usually stored as Circular Queues Stored in a contiguous block in which the first entry is considered to follow the la。

11、st entry Prevents a queue from crawling out of its allotted storage space,Figure 8.12 A stack in memory,Figure 8.13 A queue implementation with head and tail pointers,Storing Binary Trees,Linked structure Each node = data cells + two child pointers Accessed via a pointer to root node Contiguous arra。

12、y structure A1 = root node A2,A3 = children of A1 A4,A5,A6,A7 = children of A2 and A3,Figure 8.14 The structure of a node in a binary tree,Figure 8.15 The conceptual and actual organization of a binary tree using a linked storagesystem,Figure 8.16 A tree stored without pointers,Figure 8.17 A sparse,。

13、 unbalanced tree shown in its conceptual form and as it would bestored without pointers,Manipulating Data Structures,Ideally, a data structure should be manipulated solely by pre-defined procedures. Example: A stack typically needs at least push and pop procedures. The data structure along with thes。

14、e procedures constitutes a complete abstract tool.,Figure 8.18 A procedure for printing a linked list,Case Study,Problem: Construct an abstract tool consisting of a list of names in alphabetical order along with the operations search, print, and insert.,Figure 8.19 The letters A through M arranged i。

15、n an ordered tree,Figure 8.20 The binary search as it would appear if the list were implemented as a linkedbinary tree,Figure 8.21 The successively smaller trees considered by the procedure in Figure 8.18when searching for the letter J,Figure 8.22 Printing a search tree in alphabetical order,Figure 。

16、8.23 A procedure for printing the data in a binary tree,Figure 8.24 Inserting the entry M into the list B, E, G, H, J, K, N, P stored as a tree,Figure 8.25 A procedure for inserting a new entry in a list stored as a binary tree,User-defined Data Type,A template for a heterogeneous structure Example:。

17、 define type EmployeeType to be char Name25; int Age; real SkillRating; ,Abstract Data Type,A user-defined data type with procedures for access and manipulation Example: define type StackType to be int StackEntries20; int StackPointer = 0; procedure push(value) StackEntriesStackPointer value; StackP。

18、ointer StackPointer + 1; procedure pop . . . ,Class,An abstract data type with extra features Characteristics can be inherited Contents can be encapsulated Constructor methods to initialize new objects,Figure 8.26 A stack of integers implemented in Java and C#,Pointers in Machine Language,Immediate 。

19、addressing: Instruction contains the data to be accessed Direct addressing: Instruction contains the address of the data to be accessed Indirect addressing: Instruction contains the location of the address of the data to be accessed,Figure 8.27 Our first attempt at expanding the machine language in Appendix C to take advantage of pointers,Figure 8.28 Loading a register from a memory cell that is located by means of a pointerstored in a register。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值