当前位置:   article > 正文

链表逆置_链表逆置 (

链表逆置 (

1.声明两个指针*q,*pp指向头结点的nextq指向pnext,让头结点的next为空,链表逆置相当于建立一个新的链表,只是需要将所需的结点在另一个链表中得到。

2.让链表的头结点的next为空,是让它继续当新链表的头结点。

3.新链表的链接和逆序建链表类似,都是让结点直接插入到头结点的后边。

4.所需结点的得到,使用pq在原来的链表中依次得到,p永远指向将要链接的结点,q指向p结点的下一个结点。

5.当链接上一个结点的时候,让p指向qq指向它的next,直到q为空结点。

  1. //链表逆置
  2. #include <iostream>
  3. #include<stdlib.h>
  4. using namespace std;
  5. struct node
  6. {
  7. int x;
  8. struct node *next;
  9. };
  10. //顺序建表
  11. struct node *creatListShun(int lenth)
  12. {
  13. struct node *head,*t,*p;
  14. int i;
  15. head=(struct node *)malloc(sizeof(struct node));
  16. head->next=NULL;
  17. t=head;
  18. for(i=0; i<lenth; i++)
  19. {
  20. p=(struct node *)malloc(sizeof(struct node));
  21. p->x=i;
  22. p->next=NULL;
  23. t->next=p;
  24. t=p;
  25. }
  26. return head;
  27. }
  28. struct node *nizhi(struct node *head)
  29. {
  30. struct node *p,*q;
  31. p=head->next;
  32. head->next=NULL;
  33. q=p->next;
  34. while (p!=NULL)
  35. {
  36. p->next=head->next;
  37. head->next=p;
  38. p=q;
  39. if (q) q=q->next;
  40. }
  41. return head;
  42. }
  43. int main()
  44. {
  45. struct node *head,*t;
  46. head=creatListShun(10);//顺序建链表
  47. t=head->next;
  48. cout<<"顺序建链表 :";
  49. while(t!=NULL)
  50. {
  51. cout<<t->x<<" ";
  52. t=t->next;
  53. }
  54. cout<<endl;
  55. head=nizhi(head);//链表逆置
  56. t=head->next;
  57. cout<<"链表逆置 :";
  58. while(t!=NULL)
  59. {
  60. cout<<t->x<<" ";
  61. t=t->next;
  62. }
  63. cout<<endl;
  64. return 0;
  65. }



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

闽ICP备14008679号