当前位置:   article > 正文

数据结构---顺序表,链表_顺序链表

顺序链表

目录

前言

线性表

线性表的概念

顺序表

顺序表的概念

顺序表的结构

接口实现

相关面试题分析

顺序表的问题及思考

链表

链表的概念及结构

链表的分类

单链表的实现 

接口实现 

链表面试题

双向链表

顺序表和链表的区别


前言

        这篇文章主要讲顺序表和链表,有几点需要大家注意一下:1.在学习的时候如果认为看着比较吃力的话,建议先去看看c语言--指针于结构体。2.当我们学习数据结构更多的是要练习,一遍一遍的把练习把基础打牢固。3.我们希望大家都能养成爱画图的习惯,很多时候图画出来了,思路就清晰了,代码就自然出来。4.遇到bug多调试,不熟不要怕慢慢就熟了。在这里与君共勉,互相加油,互相学习。

线性表

线性表的概念

        线性表(linear list)是n个具有相同特性的数据元素的有限序列。 线性表是一种在实际中广泛使用的数据结构,常见的线性表:顺序表、链表、栈、队列、字符串...

线性表在逻辑上是线性结构,也就说是连续的一条直线。但是在物理结构上并不一定是连续的,线性表在物理上存储时,通常以数组和链式结构的形式存储。

 顺序表

顺序表的概念

        顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储。在数组上完成数据的增删查改。

顺序表的结构

1. 静态顺序表:使用定长数组存储元素。

2.动态顺序表:使用动态开辟的数组存储。 

         静态顺序表只适用于确定知道需要存多少数据的场景。静态顺序表的定长数组导致N定大了,空间开多了浪费,开少了不够用。所以现实中基本都是使用动态顺序表,根据需要动态的分配空间大小,所以下面我们实现动态顺序表。

接口实现

SeqList.h---头文件,声明

  1. #pragma once
  2. #include <stdio.h>
  3. #include <assert.h>
  4. #include <stdlib.h>
  5. typedef int SLDateType;
  6. typedef struct SeqList
  7. {
  8. SLDateType* a;
  9. size_t size;
  10. size_t capacity;
  11. }SeqList;
  12. //初始化
  13. void SeqListInit(SeqList* ps);
  14. //销毁
  15. void SeqListDestroy(SeqList* ps);
  16. //打印
  17. void SeqListPrint(SeqList* ps);
  18. //尾加
  19. void SeqListPushBack(SeqList* ps, SLDateType x);
  20. //头加
  21. void SeqListPushFront(SeqList* ps, SLDateType x);
  22. //头删
  23. void SeqListPopFront(SeqList* ps);
  24. //尾删
  25. void SeqListPopBack(SeqList* ps);
  26. //顺序表查找
  27. int SeqListFind(SeqList* ps, SLDateType x);
  28. //顺序表在pos位置插入x
  29. void SeqListInsert(SeqList* ps, size_t pos, SLDateType x);
  30. //顺序表删除pos位置的值
  31. void SeqListErase(SeqList* ps, size_t pos);

SeqList.c---函数实现

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include "SeqList.h"
  3. void SeqListInit(SeqList* ps)//初始化
  4. {
  5. assert(ps);
  6. ps->a = NULL;
  7. ps->size = ps->capacity = 0;
  8. }
  9. void SeqListDestroy(SeqList* ps)//销毁
  10. {
  11. assert(ps);
  12. free(ps->a);
  13. ps->a = NULL;
  14. ps->size = ps->capacity = 0;
  15. }
  16. void SeqListPrint(SeqList* ps)//打印
  17. {
  18. assert(ps);
  19. for (size_t i = 0; i < ps->size; i++)
  20. {
  21. printf("%d ", ps->a[i]);
  22. }
  23. printf("\n");
  24. }
  25. void SLCheckCapacity(SeqList* ps)//检查
  26. {
  27. if (ps->size==ps->capacity)
  28. {
  29. SLDateType newCapcity = ps->capacity==0 ? 4 : ps->capacity * 2;
  30. SLDateType* temp = (SLDateType*)realloc(ps->a, sizeof(ps->a)*newCapcity);
  31. if (temp == NULL)
  32. {
  33. perror("realloc fail");
  34. return;
  35. }
  36. ps->a = temp;
  37. ps->capacity = newCapcity;
  38. }
  39. }
  40. void SeqListPushBack(SeqList* ps, SLDateType x)//尾加
  41. {
  42. assert(ps);
  43. SLCheckCapacity(ps);
  44. ps->a[ps->size] = x;
  45. ps->size++;
  46. }
  47. void SeqListPushFront(SeqList* ps, SLDateType x)//头加
  48. {
  49. assert(ps);
  50. SLCheckCapacity(ps);
  51. int end = ps->size-1;
  52. while (end >= 0)
  53. {
  54. ps->a[end+1] = ps->a[end];
  55. end--;
  56. }
  57. ps->a[0] = x;
  58. ps->size++;
  59. }
  60. void SeqListPopFront(SeqList* ps)//头删
  61. {
  62. assert(ps);
  63. if (ps->size == 0)
  64. {
  65. return;
  66. }
  67. SLDateType str = 0;
  68. SLDateType end = ps->size - 1;
  69. while (str <= end)
  70. {
  71. ps->a[str] = ps->a[str + 1];
  72. str++;
  73. }
  74. ps->size--;
  75. }
  76. void SeqListPopBack(SeqList* ps)//尾删
  77. {
  78. assert(ps);
  79. if (ps->size == 0)
  80. {
  81. return;
  82. }
  83. ps->size--;
  84. }
  85. int SeqListFind(SeqList* ps, SLDateType x)//顺序表插入
  86. {
  87. assert(ps);
  88. int end = ps->size - 1;
  89. while (end>=0)
  90. {
  91. if (ps->a[end] == x)
  92. return end;
  93. end--;
  94. }
  95. return -1;
  96. }
  97. void SeqListInsert(SeqList* ps, size_t pos, SLDateType x)//顺序表在pos位置插入x
  98. {
  99. assert(ps);
  100. if (pos < 0 || pos >(ps->size - 1))
  101. {
  102. printf("输入错误\n");
  103. return;
  104. }
  105. for (size_t i = ps->size; i > pos; i--)
  106. {
  107. ps->a[i] = ps->a[i - 1];
  108. }
  109. ps->a[pos] = x;
  110. ps->size++;
  111. }
  112. void SeqListErase(SeqList* ps, size_t pos)//顺序表删除pos位置的值
  113. {
  114. assert(ps);
  115. if (pos < 0 || pos >(ps->size - 1))
  116. {
  117. printf("输入错误\n");
  118. return;
  119. }
  120. for (size_t i = pos; i < ps->size; i++)
  121. {
  122. ps->a[i] = ps->a[i+1];
  123. }
  124. ps->size--;
  125. }

 test.c---测试

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include "SeqList.h"
  3. int main()
  4. {
  5. SeqList s;
  6. SeqListInit(&s);
  7. SeqListPushBack(&s, 1);
  8. SeqListPrint(&s);
  9. SeqListPushFront(&s, 2);
  10. SeqListPushFront(&s, 3);
  11. SeqListPrint(&s);
  12. SeqListPopFront(&s);
  13. SeqListPrint(&s);
  14. int ret = SeqListFind(&s, 2);
  15. if (ret == 1)
  16. printf("yes\n");
  17. else
  18. printf("no\n");
  19. SeqListInsert(&s, 1, 5);
  20. SeqListPrint(&s);
  21. SeqListErase(&s, 1);
  22. SeqListPrint(&s);
  23. }

这里建议实现一个函数了就先测试了来,后面过多了就容易看着眼花缭乱的。大神就另当别论!

相关面试题分析

例题1

原地移除数组中所有的元素val,要求时间复杂度为O(N),空间复杂度为O(1)。链接

实现过程:

 实现代码:

  1. int removeElement(int* nums, int numsSize, int val){
  2. int src=0,dest=0;
  3. while(src<numsSize)
  4. {
  5. if(nums[src]==val)
  6. {
  7. src++;
  8. }
  9. else
  10. {
  11. nums[dest++]=nums[src++];
  12. }
  13. }
  14. return dest;
  15. }

例题2

删除排序数组中的重复项:链接

实现过程:

 实现代码:

  1. int removeDuplicates(int* nums, int numsSize){
  2. if (numsSize == 0) {
  3. return 0;
  4. }
  5. int src=1,dest=0;
  6. while(src<numsSize)
  7. {
  8. if(nums[src]==nums[dest])
  9. {
  10. src++;
  11. }
  12. else
  13. {
  14. dest++;
  15. nums[dest]=nums[src];
  16. src++;
  17. }
  18. }
  19. return dest+1;
  20. }

例题3

合并两个有序数组:链接

实现过程---2种情况::

 实现代码:

  1. void merge(int* nums1, int nums1Size, int m, int* nums2, int nums2Size, int n){
  2. int src=m-1,dest=n-1;
  3. int end=m+n-1;
  4. while(src>=0&&dest>=0)
  5. {
  6. if(nums1[src]>nums2[dest])
  7. {
  8. nums1[end]=nums1[src];
  9. src--;
  10. end--;
  11. }
  12. else
  13. {
  14. nums1[end]=nums2[dest];
  15. end--;
  16. dest--;
  17. }
  18. }
  19. while(dest>=0)
  20. {
  21. nums1[end]=nums2[dest];
  22. end--;
  23. dest--;
  24. }
  25. }
  26. //方法二--插入快排
  27. int cmp(void* dest,void* src)
  28. {
  29. return *(int*)dest-*(int*)src;
  30. }
  31. void merge(int* nums1, int nums1Size, int m, int* nums2, int nums2Size, int n){
  32. for (int i=0;i!=n;i++){
  33. nums1[m+i] = nums2[i];
  34. }
  35. qsort(nums1,n+m,sizeof(int),cmp);
  36. }

 顺序表的问题及思考

问题:

1. 中间/头部的插入删除,时间复杂度为O(N)

2. 增容需要申请新空间,拷贝数据,释放旧空间。会有不小的消耗。

3. 增容一般是呈2倍的增长,势必会有一定的空间浪费。例如当前容量为100,满了以后增容到200,我们再继续插入了5个数据,后面没有数据插入了,那么就浪费了95个数据空间。

如何解决这一问题呢?下面给出了链表的结构来看看。

链表

链表的概念及结构

概念:

        链表是一种物理存储结构上非连续、非顺序的存储结构,数据元素的逻辑顺序是通过链表中的指针链接次序实现的 。

 链表的分类

实际中链表的结构非常多样,以下情况组合起来就有8种链表结构:

 单向或者双向

 带头或者不带头 

循环或者非循环 

虽然有这么多的链表的结构,但是我们实际中最常用还是两种结构:

1. 无头单向非循环链表:结构简单,一般不会单独用来存数据。实际中更多是作为其他数据结构的子结构,如哈希桶、图的邻接表等等。另外这种结构在笔试面试中出现很多。

2. 带头双向循环链表:结构最复杂,一般用在单独存储数据。实际中使用的链表数据结构,都是带头双向循环链表。另外这个结构虽然结构复杂,但是使用代码实现以后会发现结构会带来很多优势,实现反而简单了,后面代码实现了就知道了。

单链表的实现 

在学习单链表之前,我们需要弄明白我们是否需要改变我们传过去的参数?如果需要改变那我们传参的时候,实现功能的函数用什么接受参数?我们知道单链表是需要结构体来实现的,一个是存数据一个是存地址,那么结构体中的变量就应该是一个int类型的数据和一个指针。当我们明白结构体重的变量之后,我们会发现实现增删改查就是改变指针中的地址。数据有地址,指针也有地址。所需要改变指针地址时,我们就用二级指针来接受指针的地址。下面就是说明为什么需要用二级指针来接受。

接口实现 

SList.h--函数声明

  1. #define _CRT_SECURE_NO_WARNINGS
  2. #include <stdio.h>
  3. #include <assert.h>
  4. #include <stdlib.h>
  5. typedef int SLTDateType;
  6. //创建结构体
  7. typedef struct SListNode
  8. {
  9. SLTDateType data;
  10. struct SListNode* next;
  11. }SListNode;
  12. // 动态申请一个节点
  13. SListNode* BuySListNode(SLTDateType x);
  14. // 单链表打印
  15. void SListPrint(SListNode* phead);
  16. // 单链表尾插
  17. void SListPushBack(SListNode** pphead, SLTDateType x);
  18. // 单链表的头插
  19. void SListPushFront(SListNode** pphead, SLTDateType x);
  20. // 单链表的尾删
  21. void SListPopBack(SListNode** pphead);
  22. // 单链表头删
  23. void SListPopFront(SListNode** pphead);
  24. // 单链表查找
  25. SListNode* SListFind(SListNode* plist, SLTDateType x);
  26. // 单链表在pos位置之后插入x
  27. void SListInsertAfter(SListNode* pos, SLTDateType x);
  28. // 单链表删除pos位置之后的值
  29. void SListEraseAfter(SListNode* pos);
  30. // 单链表的销毁
  31. void SListDestroy(SListNode* phead);

SList.c--功能实现

  1. #include "SList.h"
  2. // 动态申请一个节点
  3. SListNode* BuySListNode(SLTDateType x)
  4. {
  5. SListNode* newnode = (SListNode*)malloc(sizeof(SListNode)* 1);
  6. if (newnode == NULL)
  7. {
  8. perror("malloc fail");
  9. exit(-1);
  10. }
  11. newnode->data = x;
  12. newnode->next = NULL;
  13. return newnode;
  14. }
  15. // 单链表打印
  16. void SListPrint(SListNode* phead)
  17. {
  18. assert(phead);
  19. SListNode*cur = phead;
  20. while (cur != NULL)
  21. {
  22. printf("%d->", cur->data);
  23. cur = cur->next;
  24. }
  25. printf("NULL\n");
  26. }
  27. // 单链表尾插
  28. void SListPushBack(SListNode** pphead, SLTDateType x)
  29. {
  30. assert(pphead);
  31. SListNode* newnode = BuySListNode(x);
  32. if (*pphead == NULL)//为空
  33. {
  34. *pphead = newnode;
  35. }
  36. else//不为空
  37. {
  38. SListNode* tail = *pphead;
  39. while (tail->next != NULL)
  40. {
  41. tail = tail->next;
  42. }
  43. tail->next = newnode;
  44. }
  45. }
  46. // 单链表的头插
  47. void SListPushFront(SListNode** pphead, SLTDateType x)
  48. {
  49. assert(pphead);
  50. SListNode* newnode = BuySListNode(x);
  51. newnode->next = *pphead;
  52. *pphead = newnode;
  53. }
  54. // 单链表的尾删
  55. void SListPopBack(SListNode** pphead)
  56. {
  57. assert(pphead);
  58. if (*pphead == NULL)
  59. {
  60. return;
  61. }
  62. SListNode* tail = *pphead;
  63. while (tail->next->next != NULL)
  64. {
  65. tail = tail->next;
  66. }
  67. free(tail->next);
  68. tail->next = NULL;
  69. }
  70. // 单链表头删
  71. void SListPopFront(SListNode** pphead)
  72. {
  73. assert(pphead);
  74. if (*pphead == NULL)
  75. {
  76. return;
  77. }
  78. SListNode* del = *pphead;
  79. *pphead = del->next;
  80. free(del);
  81. del = NULL;
  82. }
  83. // 单链表查找
  84. SListNode* SListFind(SListNode* plist, SLTDateType x)
  85. {
  86. assert(plist);
  87. while (plist->data!= x)
  88. {
  89. plist = plist->next;
  90. }
  91. if (plist == NULL)
  92. {
  93. return NULL;
  94. }
  95. else
  96. return plist;
  97. }
  98. // 单链表在pos位置之后插入x
  99. void SListInsertAfter( SListNode* pos, SLTDateType x)
  100. {
  101. assert(pos);
  102. SListNode*newnode= BuySListNode(x);
  103. newnode->next = pos->next;
  104. pos->next = newnode;
  105. }
  106. // 单链表删除pos位置之后的值
  107. void SListEraseAfter(SListNode* pos)
  108. {
  109. assert(pos);
  110. //SListNode*newnode = pos->next;
  111. //
  112. //if (newnode != NULL)
  113. //{
  114. // SListNode* nextnext = newnode->next;
  115. // free(newnode);
  116. // pos->next = nextnext;
  117. //}
  118. SListNode*newnode = pos;
  119. if (newnode->next != NULL)
  120. {
  121. SListNode*nextnext = newnode->next->next;
  122. free(newnode->next);
  123. pos->next = nextnext;
  124. }
  125. }
  126. // 单链表的销毁
  127. void SListDestroy(SListNode* phead)
  128. {
  129. assert(phead);
  130. free(phead->next);
  131. phead->data = 0;
  132. phead->next= NULL;
  133. }

Test.c--测试

  1. #include "SList.h"
  2. //尾插展示
  3. void TestSList1()
  4. {
  5. SListNode* plist=NULL;
  6. SListPushBack(&plist, 1);
  7. SListPushBack(&plist, 3);
  8. SListPushBack(&plist, 7);
  9. SListPrint(plist);
  10. }
  11. //头查展示
  12. void TestSList2()
  13. {
  14. SListNode* plist = NULL;
  15. SListPushFront(&plist, 1);
  16. SListPushFront(&plist, 7);
  17. SListPushFront(&plist, 11);
  18. SListPrint(plist);
  19. }
  20. // 单链表的尾删
  21. void TestSList3()
  22. {
  23. SListNode* plist = NULL;
  24. SListPushFront(&plist, 1);
  25. SListPushFront(&plist, 7);
  26. SListPushFront(&plist, 11);
  27. SListPopBack(&plist);
  28. SListPopBack(&plist);
  29. SListPrint(plist);
  30. }
  31. void TestSList4()
  32. {
  33. SListNode* plist = NULL;
  34. SListPushFront(&plist, 2);
  35. SListPushFront(&plist, 8);
  36. SListPushFront(&plist, 9);
  37. SListPopFront(&plist);
  38. SListPrint(plist);
  39. SListNode* pos = SListFind(plist, 8);
  40. if (pos)
  41. {
  42. // ޸
  43. pos->data *= 10;
  44. printf("\n");
  45. }
  46. else
  47. {
  48. printf("\n");
  49. }
  50. SListPrint(plist);
  51. }
  52. void TestSList5()
  53. {
  54. SListNode* plist = NULL;
  55. SListPushFront(&plist, 2);
  56. SListPushFront(&plist, 2);
  57. SListPushFront(&plist, 3);
  58. SListPushFront(&plist, 4);
  59. SListNode* pos = SListFind(plist, 2);
  60. SListInsertAfter(pos, 4);
  61. SListPrint(plist);
  62. }
  63. void TestSList6()
  64. {
  65. SListNode* plist = NULL;
  66. SListPushFront(&plist, 4);
  67. SListPushFront(&plist, 5);
  68. SListPushFront(&plist, 7);
  69. SListPushFront(&plist, 8);
  70. SListPushFront(&plist, 8);
  71. SListPushFront(&plist, 8);
  72. SListNode* pos = SListFind(plist,7);
  73. SListEraseAfter(pos);
  74. SListPrint(plist);
  75. }
  76. void TestSList7()
  77. {
  78. SListNode* plist = NULL;
  79. SListPushFront(&plist, 4);
  80. SListPushFront(&plist, 5);
  81. SListPushFront(&plist, 7);
  82. SListDestroy(plist);
  83. SListPrint(plist);
  84. }
  85. int main()
  86. {
  87. TestSList1();
  88. TestSList2();
  89. TestSList3();
  90. TestSList4();
  91. TestSList5();
  92. TestSList6();
  93. TestSList7();
  94. }

链表面试题

例题1

删除链表中等于给定值 val 的所有结点 :链接

图文解析:

实现代码:

  1. struct ListNode* removeElements(struct ListNode* head, int val){
  2. struct ListNode* plist=NULL;
  3. struct ListNode* newnod=head;
  4. while(newnod)
  5. {
  6. if(newnod->val!=val)
  7. {
  8. plist=newnod;
  9. newnod=newnod->next;
  10. }
  11. else
  12. {
  13. if(plist==NULL)
  14. {
  15. head=newnod->next;
  16. free(newnod);
  17. newnod=head;
  18. }
  19. else
  20. {
  21. plist->next=newnod->next;
  22. free(newnod);
  23. newnod=plist->next;
  24. }
  25. }
  26. }
  27. return head;
  28. }

例题2

反转一个单链表:链接

方法1:我们用plist来改变地址指向,最开始将首元素next地址置为空,再将首元素地址赋予plist,将第二个元素的next地址改成第一个元素地址,接下来依次循环。主要是用plist与next保存地址。

图文解析:

 实现代码:

  1. struct ListNode* reverseList(struct ListNode* head){
  2. struct ListNode* plist=NULL;
  3. struct ListNode* cur=head;
  4. while(cur)
  5. {
  6. struct ListNode* next=cur->next;
  7. cur->next=plist;
  8. plist=cur;
  9. cur=next;
  10. }
  11. return plist;
  12. }

方法2:我们用n1,n2,n3进行同时移动,将n1赋值为null,n2为首元素,n3为首元素next,我们改变了地址指向后,n1,n2,n3依次向右的移动,n1为n2,n2为n3,直到n2位空,用返回n1。

图文解析:

  实现代码:

  1. struct ListNode* reverseList(struct ListNode* head){
  2. struct ListNode* n1=NULL;
  3. struct ListNode* n2=head;
  4. struct ListNode* n3=NULL;
  5. while(n2)
  6. {
  7. n3=n2->next;
  8. n2->next=n1;
  9. n1=n2;
  10. n2=n3;
  11. }
  12. return n1;
  13. }

例题3:

给定一个带有头结点 head 的非空单链表,返回链表的中间结点。如果有两个中间结点,则 返回第二个中间结点:链接

图文解析:

实现代码:

  1. struct ListNode* middleNode(struct ListNode* head){
  2. struct ListNode* slow=head;
  3. struct ListNode* fsat=head;
  4. while(fsat&&fsat->next)
  5. {
  6. fsat=fsat->next->next;
  7. slow=slow->next;
  8. }
  9. return slow;
  10. }

例题4

输入一个链表,输出该链表中倒数第k个结点:链接

图文解析:

实现代码: 

  1. struct ListNode* FindKthToTail(struct ListNode* pListHead, int k ) {
  2. struct ListNode* fast=pListHead;
  3. struct ListNode* slow=pListHead;
  4. struct ListNode* cur=pListHead;
  5. int count=0;
  6. while(cur)
  7. {
  8. cur=cur->next;
  9. count++;
  10. }
  11. if(pListHead==NULL||k==0||k>count)
  12. {
  13. return NULL;
  14. }
  15. while(k--&&fast)
  16. {
  17. fast=fast->next;
  18. }
  19. while(fast)
  20. {
  21. fast=fast->next;
  22. slow=slow->next;
  23. }
  24. return slow;
  25. }

 注意:有两个特殊情况,当k(倒数第几个)=0时,链表为空是,k>count(链表长度)时,返回null

例题5

图文解析:

 实现代码:

  1. struct ListNode* mergeTwoLists(struct ListNode* list1, struct ListNode* list2){
  2. struct ListNode* cur=(struct ListNode*)malloc(sizeof(struct ListNode));
  3. cur->next=NULL;
  4. struct ListNode* prve=cur;
  5. struct ListNode* plist1=list1;
  6. struct ListNode* plist2=list2;
  7. while(plist1&&plist2)
  8. {
  9. if((plist1->val) <=(plist2->val))
  10. {
  11. prve->next=plist1;
  12. prve=prve->next;
  13. plist1=plist1->next;
  14. }
  15. else
  16. {
  17. prve->next=plist2;
  18. prve=prve->next;
  19. plist2=plist2->next;
  20. }
  21. }
  22. if(plist1)
  23. {
  24. prve->next=plist1;
  25. }
  26. else
  27. {
  28. prve->next=plist2;
  29. }
  30. return cur->next;
  31. }

建议:这里建议建立一个头指针,用了头指针避免了很多判断,如果不用头指针,需要判断两个list链表是否为空,头元素到底是从list1开始还是从list2开始

例题6:

图文解析:

 实现代码:

  1. class Partition {
  2. public:
  3. ListNode* partition(ListNode* pHead, int x) {
  4. struct ListNode* plist1, *plist2;
  5. struct ListNode* head1,* head2;
  6. head1 = plist1 = (struct ListNode*)malloc(sizeof(struct ListNode));
  7. head2= plist2 = (struct ListNode*)malloc(sizeof(struct ListNode));
  8. struct ListNode* cur = pHead;
  9. while(cur)
  10. {
  11. if(cur->val<x)
  12. {
  13. head1->next=cur;
  14. head1=head1->next;
  15. cur=cur->next;
  16. }
  17. else
  18. {
  19. head2->next=cur;
  20. head2=head2->next;
  21. cur=cur->next;
  22. }
  23. }
  24. head2->next=NULL;
  25. head1->next=plist2->next;
  26. pHead=plist1->next;
  27. return pHead;
  28. }
  29. };

例题7:

链表的回文结构:链接

图文解析:

 实现代码:

  1. //寻找中间点
  2. struct ListNode* middleNode(struct ListNode* head){
  3. struct ListNode* slow=head;
  4. struct ListNode* fsat=head;
  5. while(fsat&&fsat->next)
  6. {
  7. fsat=fsat->next->next;
  8. slow=slow->next;
  9. }
  10. return slow;
  11. }
  12. //逆置中间以后
  13. struct ListNode* reverseList(struct ListNode* head){
  14. struct ListNode* plist=NULL;
  15. struct ListNode* newnode=head;
  16. while(newnode)
  17. {
  18. struct ListNode* next=newnode->next;
  19. newnode->next=plist;
  20. plist=newnode;
  21. newnode=next;
  22. }
  23. return plist;
  24. }
  25. //判断是否是回文
  26. class PalindromeList {
  27. public:
  28. bool chkPalindrome(ListNode* A) {
  29. ListNode* cur=A;
  30. ListNode* mid= middleNode(cur);
  31. ListNode*rmid =reverseList (mid);
  32. while(rmid)
  33. {
  34. if(rmid->val!=A->val)
  35. return false;
  36. A=A->next;
  37. rmid=rmid->next;
  38. }
  39. return true;
  40. }
  41. };

例题8

输入两个链表,找出它们的第一个公共结点:链接

图文解析:

 实现代码:

  1. struct ListNode *getIntersectionNode(struct ListNode *headA, struct ListNode *headB) {
  2. int len1=0,len2=0;
  3. struct ListNode* plist1=headA;
  4. struct ListNode* plist2=headB;
  5. while(plist1)
  6. {
  7. len1++;
  8. plist1=plist1->next;
  9. }
  10. while(plist2)
  11. {
  12. len2++;
  13. plist2=plist2->next;
  14. }
  15. if(plist1!=plist2)
  16. {
  17. return NULL;
  18. }
  19. int len=abs(len1-len2);
  20. plist1=headA;
  21. plist2=headB;
  22. if(len1>len2)
  23. {
  24. while(len--)
  25. {
  26. plist1=plist1->next;
  27. }
  28. }
  29. else
  30. {
  31. while(len--)
  32. {
  33. plist2=plist2->next;
  34. }
  35. }
  36. while(plist1!=plist2)
  37. {
  38. plist1=plist1->next;
  39. plist2=plist2->next;
  40. }
  41. return plist1;
  42. }

例题9:

给定一个链表,判断链表中是否有环:例题

【思路】 快慢指针,即慢指针一次走一步,快指针一次走两步,两个指针从链表其实位置开始运行, 如果链表 带环则一定会在环中相遇,否则快指针率先走到链表的末尾。比如:陪女朋友到操作跑步减 肥。 【扩展问题】

为什么快指针每次走两步,慢指针走一步可以?

假设链表带环,两个指针最后都会进入环,快指针先进环,慢指针后进环。当慢指针刚 进环时,可能就和快指针相遇了,最差情况下两个指针之间的距离刚好就是环的长度。 此时,两个指针每移动一次,之间的距离就缩小一步,不会出现每次刚好是套圈的情 况,因此:在满指针走到一圈之前,快指针肯定是可以追上慢指针的,即相遇。

快指针一次走3步,走4步, ...n步行吗?

 实现代码:

  1. bool hasCycle(struct ListNode *head) {
  2. struct ListNode *headA=head;
  3. struct ListNode *headB=head;
  4. while(headA&&headA->next)
  5. {
  6. headA=headA->next->next;
  7. headB=headB->next;
  8. if(headA==headB)
  9. {
  10. return true;
  11. }
  12. }
  13. return false;
  14. }

例题10:

给定一个链表,返回链表开始入环的第一个结点。 如果链表无环,则返回 NULL:链接

方法1:

结论 :让一个指针从链表起始位置开始遍历链表,同时让一个指针从判环时相遇点的位置开始绕环 运行,两个指针都是每次均走一步,最终肯定会在入口点的位置相遇。

证明 

 实现代码:

  1. struct ListNode *detectCycle(struct ListNode *head) {
  2. struct ListNode *fastA=head;
  3. struct ListNode *slow = head, *fast = head;
  4. while (fast != NULL&&fast->next != NULL) {
  5. slow = slow->next;
  6. fast = fast->next->next;
  7. if (fast == slow) {
  8. struct ListNode* ptr = head;
  9. while (ptr != slow) {
  10. ptr = ptr->next;
  11. slow = slow->next;
  12. }
  13. return ptr;
  14. }
  15. }
  16. return NULL;
  17. }

方法2:

 图文解析:

 代码实现:--自己实现

例题11

给定一个链表,每个结点包含一个额外增加的随机指针,该指针可以指向链表中的任何结点 或空结点:链接

图文解析:

 代码实现:

  1. struct Node* copyRandomList(struct Node* head) {
  2. struct Node* cur=head;
  3. struct Node* next=NULL;
  4. struct Node* copy=NULL;
  5. //插入copy节点
  6. while(cur)
  7. {
  8. next=cur->next;
  9. copy=(struct Node*)malloc(sizeof(struct Node));
  10. copy->val=cur->val;
  11. cur->next=copy;
  12. copy->next=next;
  13. cur=next;
  14. }
  15. //更新random
  16. cur=head;
  17. while(cur)
  18. {
  19. copy=cur->next;
  20. if(cur->random==NULL)
  21. {
  22. copy->random=NULL;
  23. }
  24. else
  25. {
  26. copy->random=cur->random->next;
  27. }
  28. cur=cur->next->next;
  29. }
  30. //分解与恢复
  31. struct Node* copyhead=NULL,*copytail=NULL;
  32. cur=head;
  33. while(cur)
  34. {
  35. copy=cur->next;
  36. next=copy->next;
  37. if(copytail==NULL)
  38. {
  39. copyhead=copytail=copy;
  40. }
  41. else
  42. {
  43. copytail->next=copy;
  44. copytail=copytail->next;
  45. }
  46. cur->next=next;
  47. cur=next;
  48. }
  49. return copyhead;
  50. }

 其他链接:力扣             牛客网

 双向链表

接口的实现

List.h

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <assert.h>
  4. typedef int LTDataType;
  5. typedef struct ListNode
  6. {
  7. LTDataType _data;
  8. struct ListNode* _next;
  9. struct ListNode* _prev;
  10. }ListNode;
  11. // 创建返回链表的头结点.
  12. ListNode* ListCreate();
  13. // 双向链表销毁
  14. void ListDestory(ListNode* pHead);
  15. // 双向链表打印
  16. void ListPrint(ListNode* pHead);
  17. // 双向链表尾插
  18. void ListPushBack(ListNode* pHead, LTDataType x);
  19. // 双向链表尾删
  20. void ListPopBack(ListNode* pHead);
  21. // 双向链表头插
  22. void ListPushFront(ListNode* pHead, LTDataType x);
  23. // 双向链表头删
  24. void ListPopFront(ListNode* pHead);
  25. // 双向链表查找
  26. ListNode* ListFind(ListNode* pHead, LTDataType x);
  27. // 双向链表在pos的前面进行插入
  28. void ListInsert(ListNode* pos, LTDataType x);
  29. // 双向链表删除pos位置的节点
  30. void ListErase(ListNode* pos);

List.c

  1. #include "List.h"
  2. // 创建返回链表的头结点.
  3. ListNode* ListCreate()
  4. {
  5. ListNode* gurad = (ListNode*)malloc(sizeof(ListNode));
  6. if (gurad == NULL)
  7. {
  8. perror("malloc fail");
  9. exit(-1);
  10. }
  11. gurad->_next=gurad ;
  12. gurad->_prev=gurad;
  13. return gurad;
  14. }
  15. // 双向链表销毁
  16. void ListDestory(ListNode* pHead)
  17. {
  18. assert(pHead);
  19. ListNode* cur = pHead->_next;
  20. while (cur!=pHead)
  21. {
  22. ListNode* next = cur->_next;
  23. free(cur);
  24. cur = next;
  25. }
  26. }
  27. // 双向链表打印
  28. void ListPrint(ListNode* pHead)
  29. {
  30. assert(pHead);
  31. ListNode* cur = pHead->_next;
  32. while (cur != pHead)
  33. {
  34. ListNode* next = cur->_next;
  35. printf("%d<==>", cur->_data);
  36. cur = cur->_next;
  37. }
  38. printf("\n");
  39. }
  40. //创造新节点
  41. ListNode* BuyListNode(LTDataType x)
  42. {
  43. ListNode* newnode = (ListNode*)malloc(sizeof(ListNode));
  44. if (newnode == NULL)
  45. {
  46. perror("malloc fail");
  47. exit(-1);
  48. }
  49. newnode->_data = x;
  50. newnode->_next = NULL;
  51. newnode->_prev = NULL;
  52. return newnode;
  53. }
  54. // 双向链表尾插
  55. void ListPushBack(ListNode* pHead, LTDataType x)
  56. {
  57. assert(pHead);
  58. ListNode* cur = BuyListNode(x);
  59. ListNode* prve = pHead->_prev;
  60. prve->_next = cur;
  61. cur->_prev = prve;
  62. cur->_next = pHead;
  63. pHead->_prev = cur;
  64. //ListInsert(pHead, x);
  65. }
  66. // 双向链表尾删
  67. void ListPopBack(ListNode* pHead)
  68. {
  69. assert(pHead);
  70. ListNode* prve1 = pHead->_prev;
  71. ListNode* prve2 = prve1->_prev;
  72. prve2->_next = pHead;
  73. pHead->_prev = prve2;
  74. free(prve1);
  75. prve1 = NULL;
  76. //ListErase(pHead->_prev);
  77. }
  78. // 双向链表头插
  79. void ListPushFront(ListNode* pHead, LTDataType x)
  80. {
  81. assert(pHead);
  82. ListNode* cur = BuyListNode(x);
  83. ListNode* next = pHead->_next;
  84. pHead->_next = cur;
  85. cur->_prev = pHead;
  86. next->_prev = cur;
  87. cur->_next = next;
  88. //ListInsert(pHead->_next, x);
  89. }
  90. // 双向链表头删
  91. void ListPopFront(ListNode* pHead)
  92. {
  93. assert(pHead);
  94. ListNode* next1 = pHead->_next;
  95. ListNode* next2 = next1->_next;
  96. pHead->_next = next2;
  97. next2->_prev = pHead;
  98. free(next1);
  99. next1 = NULL;
  100. //ListErase(pHead->_next);
  101. }
  102. // 双向链表查找
  103. ListNode* ListFind(ListNode* pHead, LTDataType x)
  104. {
  105. assert(pHead);
  106. ListNode* cur = pHead->_next;
  107. while (cur != pHead)
  108. {
  109. if (cur->_data == x)
  110. return cur;
  111. cur = cur->_next;
  112. }
  113. return NULL;
  114. }
  115. // 双向链表在pos的前面进行插入
  116. void ListInsert(ListNode* pos, LTDataType x)
  117. {
  118. assert(pos);
  119. ListNode* cur = BuyListNode(x);
  120. ListNode* prev = pos->_prev;
  121. prev->_next = cur;
  122. cur->_prev = prev;
  123. pos->_prev = cur;
  124. cur->_next = pos;
  125. }
  126. // 双向链表删除pos位置的节点
  127. void ListErase(ListNode* pos)
  128. {
  129. assert(pos);
  130. ListNode* prev = pos->_prev;
  131. ListNode* next = pos->_next;
  132. next->_prev = prev;
  133. prev->_next = next;
  134. free(pos);
  135. }

Test.c

  1. #include "List.h"
  2. //尾插-打印-尾删-打印
  3. void Test1()
  4. {
  5. ListNode* plist = ListCreate();
  6. ListPushBack(plist,4);
  7. ListPushBack(plist, 5);
  8. ListPushBack(plist, 8);
  9. ListPushBack(plist, 9);
  10. ListPrint(plist);
  11. ListPopBack(plist);
  12. ListPrint(plist);
  13. }
  14. //头查-打印-头删-打印-查找
  15. void Test2()
  16. {
  17. ListNode* plist = ListCreate();
  18. ListPushFront(plist, 1);
  19. ListPushFront(plist, 2);
  20. ListPushFront(plist, 3);
  21. ListPushFront(plist, 4);
  22. ListPrint(plist);
  23. ListPopFront(plist);
  24. ListPrint(plist);
  25. ListNode*ret = ListFind(plist, 2);
  26. if (ret != NULL)
  27. printf("yes\n");
  28. else
  29. printf("no\n");
  30. }
  31. //pos的前面插入-打印-pos的前面删除-打印
  32. void Test3()
  33. {
  34. ListNode* plist = ListCreate();
  35. ListPushFront(plist, 1);
  36. ListPushFront(plist, 2);
  37. ListPushFront(plist, 3);
  38. ListPushFront(plist, 4);
  39. ListInsert(plist->_next, 5);
  40. ListPrint(plist);
  41. ListErase(plist->_next);
  42. ListPrint(plist);
  43. }
  44. int main()
  45. {
  46. Test1();
  47. Test2();
  48. Test3();
  49. return 0;
  50. }

顺序表和链表的区别

不同点顺序表链表
存储空间上物理上一定连续逻辑上连续,但物理上不一定 连续
随机访问支持O(1)不支持:O(N)
任意位置插入或者删除元素可能需要搬移元素,效率低O(N)只需修改指针指向
插入动态顺序表,空间不够时需要 扩容没有容量的概念
应用场景元素高效存储+频繁访问任意位置插入和删除频繁
缓存利用率

 备注:缓存利用率参考存储体系结构 以及局部原理性。

顺序表与链表相比:顺序表CPU高速缓存命中率更高

CPU高速缓存:在寄存器与主存之间的缓存,寄存器访问速度是非常快的,但主存访问速度较慢,更不上寄存器的访问速度,所以不可能让寄存器一直等主存,为了提高效率我们就需要高速缓存(三级缓存)来将主存的数据先加载到缓存中。

CPU指向指如何访问内存:先看数据在不在三级缓存,在(命中),直接访问。不在(不命中),先加载到缓存,在访问。加载进缓存时不会一次加载一个数据,是将数据周边的数据一起加载(一段数据)--加载多少取决于硬件,为了更高效的加载

如何理解   顺序表CPU高速缓存命中率更高:因为顺序表的结构关系,它的数据具有连续性的,当我们CPU访问的时候,主存加载到缓存时是直接将一段数据直接加载,正因为它是连续寄存器寻找有用数据时就更加容易命中(更加容易找到数据),带来的好处就是效率的提高。与之相反链表的数据不具有连续性,当寄存器访问的时候该数据周围的地址不连续,访问一些没有用的数据,缓存的内存也是有限,所以也就浪费了缓存的内存。

如何知道自己的电脑的三级缓存:打开任务管理器,选择性能

 与程序员相关的CPU缓存知识

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

闽ICP备14008679号