• 头插法和尾插法



    1. #include "stdio.h"
    2. #include "stdlib.h"
    3. typedef struct List {
    4. int data; //数据域
    5. struct List *next; //指针域
    6. } List;
    7. void TailCreatList(List *L) //尾插法建立链表
    8. {
    9. List *s, *r;//s用来指向新生成的节点。r始终指向L的终端节点。
    10. r = L; //r指向了头节点,此时的头节点是终端节点。
    11. for (int i = 0; i < 10; i++) {
    12. s = (struct List*) malloc(sizeof(struct List));//s指向新申请的节点
    13. s->data = i; //用新节点的数据域来接受i
    14. r->next = s; //用r来接纳新节点
    15. r = s; //r指向终端节点
    16. }
    17. r->next = NULL; //元素已经全部装入链表L中
    18. //L的终端节点指针域为NULL,L建立完成
    19. }
    20. void HeadCreatList(List *L) //头插法建立链表
    21. {
    22. List *s; //不用像尾插法一样生成一个终端节点。
    23. L->next = NULL;
    24. for (int i = 0; i < 10; i++) {
    25. s = (struct List*) malloc(sizeof(struct List));
    26. s->data = i;
    27. s->next = L->next; //将L指向的地址赋值给S;//头插法与尾插法的不同之处主要在此,
    28. //s所指的新节点的指针域next指向L中的开始节点
    29. L->next = s; //头指针的指针域next指向s节点,使得s成为开始节点。
    30. }
    31. }
    32. void DisPlay(List *L) { //打印节点
    33. List *p = L->next;
    34. while (p != NULL) {
    35. printf("%d ", p->data);
    36. p = p->next;
    37. }
    38. printf(" ");
    39. }
    40. int main() {
    41. List *L1, *L2;
    42. L1 = (struct List*) malloc(sizeof(struct List));
    43. L2 = (struct List*) malloc(sizeof(struct List));
    44. HeadCreatList(L1);
    45. DisPlay(L1);
    46. TailCreatList(L2);
    47. DisPlay(L2);
    48. }





  • 相关阅读:
    View载入具体解释
    七、备忘录模式Memento(行为型模式)
    排序算法之直接插入排序
    IOS
    Matlab得到二值图像中最大连通区域
    MVC模式利用xib文件定制collectionCell
    五大算法思想—贪心算法
    jQuery鼠标悬停显示提示信息窗体
    J2EE基础总结(5)——EJB
    iOS 打开扬声器以及插入耳机的操作
  • 原文地址:https://www.cnblogs.com/zhuzhenfeng/p/4626539.html
Copyright © 2020-2023  润新知