Chapter-2-Linear-List数据结构-入门课件-第二篇.ppt

Chapter-2-Linear-List数据结构-入门课件-第二篇.ppt

  1. 1、本文档共54页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Singly-Linked form Data Field Pointer Field Data Field Predecessor Pointer Successor Pointer Doubly-Linked form Idiomatic description for Doubly-linked form Predecessor Pointer Data Field Successor Pointer …… a1 a2 an ^ head header cell The symbol ^ means NULL, that indicates the pointer does not point to anywhere. 2.3.3 Characters of Linked List Example: Several students make a date for journey during holiday. Because of the long distance between them, to save the fee of toll telephone, they stipulate a one-way connection that each one at most notice one person and be noticed by only one. The student Jack in Seattle is the starter, each one’s linkman lists as follows: Boston Frank 34 … … … 14 Washington Anna 5 … … … … … … … … … … … … 6 Princeton Simon 33 ^ San Francisco Mary 27 5 Seattle Jack 21 33 Los Angeles Shirley 14 27 New York Bill 6 San Diego Lynn 1 Linkman Address Name No. Conclusions: The logical contiguous nodes are not always contiguous in physics. The head and tail node in a linked list are different from others——the head node needs a head pointer to denote and the content of the pointer field of tail node must be null (or nil). In general, the pointer field of the data element is always defined as the pointer type. The serial number of data element of linked list does not start from 0. Jack 5 Shirley 33 Anna 14 Simon 6 Bill 27 Mary ^ head 2.3.4 Operations in Singly-Linked List Initialization ① Define data type and pointers. To simplify the programming, we defined some macros. #define L sizeof(struct chain) #define NEW(s) (SLL *)malloc(s) #include stdio.h typedef struct chain { int n; struct chain *next; }SLL; SLL *head,*p,*q; ② Create an empty list head=NULL; ③ Input the head node p=NEW(L); p-next=NULL; scanf(%d,p-n); head=p; head p 27 ^ ^ ④ Supplement nodes q=NEW(L); scanf(%d,q-n); p-next=q; q-next=NULL; ⑤ To supplement repeatedly, a flag could be u

文档评论(0)

wx171113 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档