- 1、本文档共35页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
七 链表(ying)
2.3 linked lists The drawback of the static date structure 1.Once memory space is allocated for the array, it cannot be extended. 2.If some data item has to be inserted or if some data has to be removed from the array in the middle,bconsiderable amount of date of data movement occurs. this data movement consumes computer time and decreases program efficiency. To overcome this problem of static data structure,,a linked –list data structure is used. Linked-lists In the linked-list data structure, the elements need not be stored in consecutive memory locations. The memory space allocated for the elements of the list can be extended at any time. Each element will have two types of fields, namely, data fields and pointer fields. data fields have the actual data, the pointer fields has the address of the next element. Definition A linked list is an order collection of finite homogeneous data elements called nodes where the linear order is maintained by means of links or pointers. The number of pointers are maintained depending on the requirements and usage.based on this ,linked lists are classified into three categories: Singly linked list Doubly linked list Circularly linked list Singly linked list 2.3.2 basic operations 【2.6】InsertFirstLinkList Creat_LinkList1( ){ LinkList H=(LinkList)malloc(sizeof(LNode)); /* 生成头结点 */ H -next=NULL; /* 空表 */ LNode *s; int x; /* 设数据元素的类型为int */ scanf("%d",x); while (x!=-1) { s=(LinkList)malloc(sizeof(LNode)); s-data=x; s-next=H-next; H-next=s; scanf ("%d",x); } return H ; } (2)Inserts a node after the last node of the linked list (16,20,65,12) 【2.7】InsertLast The length of list 算法思路:设一个指针p和计数器j,初始化使p指向头结点H,j=0。若p所指结点还有后继结点,p向后移动,计数器加 1,重复上述过程,直到p-next==NULL为止。 【算法2.8】设H是带头结点的单链表,求带头结点单链表的表长。 Status Length_LinkList (LinkList H) { LNode * p= H ; int j=0; while(p-next) { p=p-next; j++; } return j; } 4.Insertion of a node int I
您可能关注的文档
- 一年级语文ie ve er课件改.ppt
- 一次函数的分段函数的解析式的求法.ppt
- 一次函数应用题和分段函数.doc
- 一次函数的图像和性质分段函数.ppt
- 一次函数的应用——行程问题-解析及答案(北师大版八年级数学).docx
- 一次函数的性质(一).ppt
- 一日一练:牛顿运动定律、动能定理与动量守恒定律(卢尚明).doc
- 一期S C型施工升降机安装方案.doc
- 一年级汉语拼音iuü部编.ppt
- 一种汽车加油口盖板.doc
- 2024年广东省河源市东源县新回龙镇招聘社区工作者真题及答案详解1套.docx
- 2024年广东省惠州市龙门县龙江镇招聘社区工作者真题及参考答案详解1套.docx
- 2024年广东省广州市从化市太平镇招聘社区工作者真题及答案详解1套.docx
- 2024年广东省江门市鹤山市宅梧镇招聘社区工作者真题带答案详解.docx
- 2024年广东省湛江市赤坎区民主街道招聘社区工作者真题及参考答案详解1套.docx
- 2024年广东省深圳市福田区梅林街道招聘社区工作者真题含答案详解.docx
- 2024年广东省湛江市赤坎区北桥街道招聘社区工作者真题及参考答案详解.docx
- 2024年广东省湛江市廉江市雅塘镇招聘社区工作者真题参考答案详解.docx
- 2024年广东省河源市和平县长塘镇招聘社区工作者真题及参考答案详解.docx
- 2024年广东省汕头市南澳县深澳镇招聘社区工作者真题及答案详解1套.docx
最近下载
- 【TiKTok运营】TikTok变现方式全解析-市场营销策划-TikTok市场分析报告-TikTok.pptx VIP
- 旅游目的地形象与游客信任关系研究——以桂林为例.pdf VIP
- (高清版)C-J∕T 244-2016 游泳池水质标准.pdf VIP
- GB50263-2007气体灭火系统施工及验收规范.docx VIP
- 2020法安通DHB-FANT7100 电气火灾监控系统设计手册.docx VIP
- 秒杀韩文字母表-半小时学会念韩文.doc VIP
- 美的集团公司分权手册.pdf VIP
- 学习贯彻党的二十届三中全会线上知识答题.docx VIP
- 《中国糖尿病足防治指南(2023年版)(Ⅰ、Ⅱ)》要点.docx VIP
- 抽沙合同协议书.doc
文档评论(0)