- 1、本文档共35页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
二级c公共基础篇64921738
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
您可能关注的文档
最近下载
- 驼峰500重载无人机产品介绍.pdf VIP
- 建筑与市政施工现场安全卫生与职业健康通用规范培训课件-(2).pptx VIP
- 2025年社会工作者《初级综合能力》考点速记20页.pdf
- 联勤保障部队第九四〇医院面向社会招聘93人招聘笔试备考试题及答案解析.docx VIP
- SYNSPEC PM型颗粒物在线监测系统说明.ppt
- 从去思碑到言行录-元代士人的政绩颂扬、交游文化与身分形.pdf
- 赢利-未来10年的经营能力-读后感.pptx VIP
- 一次函数存在性问题(菱形).docx VIP
- 肠内营养并发症的预防与管理肠道感染的措施.pptx
- 2024年2月贵州省2024届高三大联考英语试卷(含答案).pdf VIP
文档评论(0)