- 1、本文档共55页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Chapter12amp;ndash;DataStructures.ppt
Chapter 12 – Data Structures Objectives In this chapter, you will learn: To be able to allocate and free memory dynamically for data objects. To be able to form linked data structures using pointers, self-referential structures and recursion. To be able to create and manipulate linked lists, queues, stacks and binary trees. To understand various important applications of linked data structures. 12.1 Introduction Dynamic data structures Data structures that grow and shrink during execution Linked lists Allow insertions and removals anywhere Stacks Allow insertions and removals only at top of stack Queues Allow insertions at the back and removals from the front Binary trees High-speed searching and sorting of data and efficient elimination of duplicate data items 12.2 Self-Referential Structures Self-referential structures Structure that contains a pointer to a structure of the same type Can be linked together to form useful data structures such as lists, queues, stacks and trees Terminated with a NULL pointer (0) struct node { int data; struct node *nextPtr;} nextPtr Points to an object of type node Referred to as a link Ties one node to another node 12.3 Dynamic Memory Allocation 12.3 Dynamic Memory Allocation Dynamic memory allocation Obtain and release memory during execution malloc Takes number of bytes to allocate Use sizeof to determine the size of an object Returns pointer of type void * A void * pointer may be assigned to any pointer If no memory available, returns NULL Example newPtr = malloc( sizeof( struct node ) ); free Deallocates memory allocated by malloc Takes a pointer as an argument free ( newPtr ); 12.4 Linked Lists Linked list Linear collection of self-referential class objects, called nodes Connected by pointer links Accessed via a pointer to the first node of the list Subsequent nodes are accessed via the link-pointer member of the current node Link pointer in the last node is set to NULL to mark the list’s end Use a link
您可能关注的文档
- 2015省级教学团队申报.ppt
- 24 给予是快乐的.ppt
- 2、平均速度.ppt
- 2、我国财政赤字与发达资本主义国家财政赤字的不同性质.ppt
- 3.1 电磁感应现象.ppt
- 3I与各科的整合.ppt
- 4.2 直接三角分解法.ppt
- 4.6 他励直流电动机的瞬态分析与控制.ppt
- 5 成本理论.ppt
- 5.1 基本迭代方法.ppt
- Chapter 12 – File Operations.ppt
- Chapter 12 – Independent Demand Inventory Management.ppt
- Chapter 12 – Steel Products.ppt
- Chapter 12 – Systems DesignObjectives.ppt
- CHAPTER 12 BAR & BEVERAGE.ppt
- Chapter 12 Chemical Bonding II.ppt
- Chapter 12 Context-Free Languages and Pushdown Automata.ppt
- Chapter 12 File System Implementation.PPT
- Chapter 12 Fundamentals of Expert Systems.ppt
- Chapter 12 Human Impact on Resources and Ecosystems.ppt
最近下载
- 2020年教学能力大赛现场提问题目及答题要点.docx
- 上浆、挂糊和勾芡.docx VIP
- (高清版)DB34∕T 4574-2023 建设工程文件收集与归档标准.pdf VIP
- 汽车发动机检测与维修教学课件作者秦胜项目六发动机电控系统各传感器检测任务一:空气流量计(G70)的检测课件.doc VIP
- 新课改下高中英语教学的困惑与对策.doc
- 《刘慈欣中英双语科幻经典 青少版1 流浪地球》读书笔记思维导图PPT模板下载.pptx VIP
- 《刘慈欣中英双语科幻经典(青少版)4:山》读后感1000字.docx VIP
- 对标中央八项规定锲而不舍狠抓落实PPT2025中央八项规定精神学习教育课件.pptx VIP
- 高中化学必修二方程式总结-.doc
- 《文化与翻译》文化负载词的处理.ppt VIP
文档评论(0)