当前位置:   article > 正文

【图解】链表的建立(基础知识,头插法,尾插法)_尾插法图解

尾插法图解

把好久没有搞懂的链表基础知识搞懂了^ ^

基础知识复述:

1.链表里所有的“结构”都是一样的:一个数据域,一个指针域(这个指针指向另一个链表结构)。

2.头节点:为了方便操作,在真正的第一个节点前,放一个头节点(listhead)。

链表的建立:

相同点:

        两种建立方式都是,1-在主函数中,申请listhead,通过调用创建函数,把listhead的next指针指到函数创建出来的那一“串”链表。

        2-都有一个不移动的phead。

下面具体看图:(可以先看代码再回过来看图)

尾插法】:

        phead不动,phead和ptail相连,接着对ptail进行更新。

        每加入一个节点,需要做4件事:1)申请pnew的空间。2)把数据放入pnew的数据域。3)ptail的next指针指向pnew。4)把pnew赋给ptail(即图中的大长方形框框) 完成一次对ptail的更新,完成一个节点的插入。

        画图可以发现,如果输入1,2,3,输出的是1,2,3,顺序输出。

头插法

 

 

(代码里为了区别头插和尾插,此处加一个前缀b)

        bphead不动。在bphead和bpOriginal之间,插入bpNew。(如果没有bpOriginal,即为新建立链表)

        每加入一个节点,要做一下 件事。1)申请bpNew的空间。2)把数据放入bpnew的数据域。3)bpnew的next指针指向原先bphead的next指向的节点。(如果没有bpOriginal,呢bpnew的next指针指向NULL,表明在表尾)4)bphead 的next指针指向bpnew。插入完毕。

        核心是:先接后,再连前。

        画图可以发现,如果输入1,2,3,输出的是3,2,1,倒序。

最后上代码

  1. #include <iostream>
  2. using namespace std;
  3. struct listnode{
  4. int data;
  5. listnode *next;
  6. };
  7. listnode *create_list(int n);
  8. void printlist(listnode *listhead);
  9. void printnumber(listnode *listhead, int number);
  10. listnode *bcreate_list(int m);
  11. int main(){
  12. int n;
  13. printf("尾插法:输入节点个数:");
  14. cin>>n;
  15. listnode *listhead=NULL; listhead=create_list(n);
  16. printlist(listhead);
  17. int number;
  18. printf("要查看第几个节点的数值:");
  19. cin>>number;
  20. printnumber(listhead,number);
  21. printf("--------\n");
  22. printf("头插法:输入节点个数:");
  23. int m;
  24. cin>>m;
  25. listnode *blisthead=NULL;
  26. blisthead=bcreate_list(m);
  27. printlist(blisthead);
  28. printf("要查看第几个节点的数值:");
  29. cin>>number;
  30. printnumber(blisthead,number);
  31. return 0;
  32. }
  33. listnode *create_list(int n){
  34. listnode *phead= new listnode;
  35. if(phead==NULL){
  36. cout<<"error"<<endl;
  37. return NULL;
  38. }
  39. listnode *ptail=phead;
  40. ptail->next=NULL;
  41. for(int i=0;i<n;i++){
  42. int num;
  43. cin>>num;
  44. listnode *pNew=new listnode;
  45. if(pNew==NULL){
  46. cout<<"error"<<endl;
  47. }
  48. pNew->data=num;
  49. pNew->next=NULL;
  50. ptail->next=pNew;
  51. ptail=pNew;
  52. }
  53. return phead;
  54. }
  55. void printlist(listnode *listhead){
  56. listnode *temp;
  57. temp=listhead->next;
  58. while(temp!=NULL){
  59. printf("%d ",temp->data);
  60. temp=temp->next;
  61. }
  62. printf("\n");
  63. }
  64. void printnumber(listnode *listhead, int number){
  65. listnode *temp;
  66. temp=listhead;
  67. for(int i=0;i<number;i++){
  68. temp=temp->next;
  69. }
  70. printf("%d",temp->data);
  71. return;
  72. }
  73. listnode *bcreate_list(int m){
  74. listnode *bphead=new listnode;
  75. bphead->next=NULL;
  76. int value;
  77. for(int i=0;i<m;i++){
  78. listnode *bpNew=new listnode;
  79. scanf("%d",&value);
  80. bpNew->data=value;
  81. bpNew->next=bphead->next;
  82. bphead->next=bpNew;
  83. }
  84. return bphead;
  85. }

(printnumber函数可以体验到正序和逆序的输出)

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/543613
推荐阅读
相关标签
  

闽ICP备14008679号