• 【数据结构与算法-初阶】顺序表和链表


    目录

    1.线性表

    2.顺序表

    2.1概念及结构

    2.2 接口实现

    2.3 顺序表的问题及思考

    3.链表

    3.1 链表的概念及结构

     3.2 链表的分类

    3.3 链表的实现

    3.3.1 无头+单向+非循环链表增删查改实现

    3.3.2 带头+双向+循环链表增删查改实现

    4.顺序表和链表的区别


    1.线性表

    线性表(linear list)是n个具有相同特性的数据元素的有限序列。 线性表是一种在实际中广泛使用的数据结构,常见的线性表:顺序表、链表、栈、队列、字符串...
    线性表在逻辑上是线性结构,也就说是连续的一条直线。但是在物理结构上并不一定是连续的,线性表在物理上存储时,通常以
    数组和链式结构的形式存储。

    2.顺序表

    2.1概念及结构

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

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

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

    2.2 接口实现

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

    1. typedef int SLDataType;
    2. //动态顺序表
    3. typedef struct SeqList
    4. {
    5. SLDataType* a;//指向动态数组的指针
    6. int size; //数据个数
    7. int capacity; //容量-空间大小
    8. }SL;
    9. //顺序表初始化
    10. void SLInit(SL* ps);
    11. // 顺序表尾插
    12. void SLPushBack(SL* ps, SLDataType x);
    13. // 顺序表尾删
    14. void SLPopBack(SL* ps);
    15. // 顺序表头插
    16. void SLPushFront(SL* ps, SLDataType x);
    17. // 顺序表头删
    18. void SLPopFront(SL* ps);
    19. // 检查空间,如果满了,进行增容
    20. void SLCheckCapacity(SL* ps);
    21. // 顺序表查找
    22. int SLFind(SL* ps, SLDataType x);
    23. //顺序表修改
    24. void SLModify(SL* ps, int pos, SLDataType x);
    25. // 顺序表在pos位置插入x
    26. void SLInsert(SL* ps, int pos, SLDataType x);
    27. // 顺序表删除pos位置的值
    28. void SLErase(SL* ps, int pos);
    29. // 顺序表销毁
    30. void SLDestory(SL* ps);
    31. // 顺序表打印
    32. void SLPrint(SL* ps);

    接口的实现:

    1. void SLPrint(SL* ps)
    2. {
    3. assert(ps);
    4. for (int i = 0; i < ps->size; i++)
    5. {
    6. printf("%d ", ps->a[i]);
    7. }
    8. printf("\n");
    9. }
    10. void SLInit(SL* ps)
    11. {
    12. assert(ps);
    13. ps->a = NULL;
    14. ps->size = ps->capacity = 0;
    15. }
    16. void SLCheckCapacity(SL* ps)
    17. {
    18. assert(ps);
    19. if (ps->capacity == ps->size)
    20. {
    21. int newCapacity = ps->capacity == 0 ? 4 : ps->capacity * 2;
    22. SLDataType* tmp = (SLDataType*)realloc(ps->a, newCapacity * sizeof(SLDataType));
    23. if (tmp == NULL)
    24. {
    25. printf("realloc fail\n");
    26. exit(-1);
    27. }
    28. ps->a = tmp;
    29. ps->capacity = newCapacity;
    30. }
    31. }
    32. int SLFind(SL* ps, SLDataType x)
    33. {
    34. assert(ps);
    35. for (int i = 0; i < ps->size; i++)
    36. {
    37. if (ps->a[i] = x)
    38. return i;
    39. }
    40. return -1;
    41. }
    42. void SLModify(SL* ps, int pos, SLDataType x)
    43. {
    44. assert(ps);
    45. assert(pos <= 0 && pos > ps->size);
    46. ps->a[pos] = x;
    47. }
    48. void SLInsert(SL* ps, int pos, SLDataType x)
    49. {
    50. assert(ps);
    51. assert(pos >= 0 && pos < ps->size);
    52. SLCheckCapacity(ps);
    53. int end = 0;
    54. while (end >= pos)
    55. {
    56. ps->a[end + 1] = ps->a[end];
    57. end--;
    58. }
    59. ps->a[pos] = x;
    60. ps->size++;
    61. }
    62. void SLErase(SL* ps, int pos)
    63. {
    64. assert(pos);
    65. assert(pos >= 0 && pos < ps->size);
    66. int begin = pos;
    67. while (begin < ps->size - 1)
    68. {
    69. ps->a[begin] = ps->a[begin + 1];
    70. begin++;
    71. }
    72. ps->size--;
    73. }
    74. void SLPushBack(SL* ps, SLDataType x)
    75. {
    76. assert(ps);
    77. SLCheckCapacity(ps);
    78. ps->a[ps->size] = x;
    79. ps->size++;
    80. }
    81. void SLPopBack(SL* ps)
    82. {
    83. assert(ps);
    84. assert(ps->size > 0);
    85. ps->size--;
    86. }
    87. void SLPushFront(SL* ps, SLDataType x)
    88. {
    89. assert(ps);
    90. SLCheckCapacity(ps);
    91. int end = ps->size - 1;
    92. while (end >= 0)
    93. {
    94. ps->a[end + 1] = ps->a[end];
    95. end--;
    96. }
    97. ps->a[0] = x;
    98. ps->size++;
    99. }
    100. void SLPopFront(SL* ps)
    101. {
    102. assert(ps);
    103. assert(ps->size > 0);
    104. int begin = 0;
    105. while(begin < ps->size - 1)
    106. {
    107. ps->a[begin + 1] = ps->a[begin];
    108. begin++;
    109. }
    110. ps->size--;
    111. }
    112. void SLDestory(SL* ps)
    113. {
    114. assert(ps);
    115. if (ps->a)
    116. {
    117. free(ps->a);
    118. ps->a = NULL;
    119. ps->capacity = ps->size = 0;
    120. }
    121. }

    2.3 顺序表的问题及思考

    问题:
    1. 中间/头部的插入删除,时间复杂度为O(N)
    2. 增容需要申请新空间,拷贝数据,释放旧空间。会有不小的消耗。
    3. 增容一般是呈2倍的增长,势必会有一定的空间浪费。例如当前容量为100,满了以后增容到200,我们再继续插入了5个数据,后面没有数据插入了,那么就浪费了95个数据空间。
    思考:如何解决以上问题呢?下面给出了链表的结构来看看。
     

    3.链表

    3.1 链表的概念及结构

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

     3.2 链表的分类

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

    1. 单向或者双向

    2. 带头或者不带头

    3. 循环或者非循环

     

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

    无头单向非循环链表:结构简单,一般不会单独用来存数据。实际中更多是作为其他数据结构的子结构,如哈希桶、图的邻接表等等。
    带头双向循环链表:结构最复杂,一般用在单独存储数据。实际中使用的链表数据结构,都是带头双向循环链表。另外这个结构虽然结构复杂,但是使用代码实现以后会发现结构会带来很多优势,实现反而简单了,后面我们代码实现了就知道了。

    3.3 链表的实现

    3.3.1 无头+单向+非循环链表增删查改实现
     

    1. typedef int SLTDataType;
    2. typedef struct SListNode
    3. {
    4. struct SListNode* next;
    5. SLTDataType data;
    6. }SLTNode;
    7. //开辟空间
    8. SLTNode* BuySListNode(SLTDataType x);
    9. //打印
    10. void SListPrint(SLTNode* phead);
    11. //尾插
    12. void SListPushBack(SLTNode** pphead, SLTDataType x);
    13. //头插
    14. void SListPushFront(SLTNode** pphead, SLTDataType x);
    15. //尾删
    16. void SListPopBack(SLTNode** pphead);
    17. //头删
    18. void SListPopFront(SLTNode** pphead);
    19. //查找
    20. SLTNode* SListFind(SLTNode* phead, SLTDataType x);
    21. // 在pos位置之前插入
    22. void SListInsert(SLTNode** pphead, SLTNode* pos, SLTDataType x);
    23. // 删除pos位置的值
    24. void SListErase(SLTNode** pphead, SLTNode* pos);
    25. // 在pos位置后面插入
    26. void SListInsertAfter(SLTNode* pos, SLTDataType x);
    27. // 删除pos位置后面的值
    28. void SListEraseAfter(SLTNode* pos);

    接口的实现:

    1. SLTNode* BuySListNode(SLTDataType x)
    2. {
    3. SLTNode* newNode = (SLTNode*)malloc(sizeof(SLTNode));
    4. assert(newNode);
    5. newNode->data = x;
    6. newNode->next = NULL;
    7. return newNode;
    8. }
    9. void SListPrint(SLTNode* phead)
    10. {
    11. assert(phead);
    12. SLTNode* cur = phead;
    13. while (cur != NULL)
    14. {
    15. printf("%d->", cur->data);
    16. cur = cur->next;
    17. }
    18. printf("NULL\n");
    19. }
    20. void SListPushBack(SLTNode** pphead, SLTDataType x)
    21. {
    22. assert(pphead);
    23. SLTNode* newNode = BuySListNode(x);
    24. if (*pphead == NULL)
    25. {
    26. *pphead = newNode;
    27. }
    28. else
    29. {
    30. // 找尾节点
    31. SLTNode* tail = *pphead;
    32. while (tail->next != NULL)
    33. {
    34. tail = tail->next;
    35. }
    36. tail->next = newNode;
    37. }
    38. }
    39. void SListPushFront(SLTNode** pphead, SLTDataType x)
    40. {
    41. assert(pphead);
    42. SLTNode* newNode = BuySListNode(x);
    43. newNode->next = *pphead;
    44. *pphead = newNode;
    45. }
    46. void SListPopBack(SLTNode** pphead)
    47. {
    48. assert(pphead);
    49. assert(*pphead);
    50. // 1、只有一个节点
    51. // 2、多个节点
    52. if ((*pphead)->next == NULL)
    53. {
    54. free(*pphead);
    55. *pphead = NULL;
    56. }
    57. else
    58. {
    59. SLTNode* tail = *pphead;
    60. while (tail->next->next != NULL)
    61. {
    62. tail = tail->next;
    63. }
    64. free(tail->next);
    65. tail->next = NULL;
    66. }
    67. }
    68. void SListPopFront(SLTNode** pphead)
    69. {
    70. assert(pphead);
    71. assert(*pphead != NULL);
    72. //if (*pphead == NULL)
    73. // return;
    74. SLTNode* next = (*pphead)->next;
    75. free(*pphead);
    76. *pphead = next;
    77. }
    78. SLTNode* SListFind(SLTNode* phead, SLTDataType x)
    79. {
    80. SLTNode* cur = phead;
    81. while (cur)
    82. {
    83. if (cur->data == x)
    84. return cur;
    85. cur = cur->next;
    86. }
    87. return NULL;
    88. }
    89. void SListInsert(SLTNode** pphead, SLTNode* pos, SLTDataType x)
    90. {
    91. assert(pos);
    92. assert(pphead);
    93. // 头插
    94. if (pos == *pphead)
    95. {
    96. SListPushFront(pphead, x);
    97. }
    98. else
    99. {
    100. SLTNode* prev = *pphead;
    101. while (prev->next != pos)
    102. {
    103. prev = prev->next;
    104. }
    105. SLTNode* newnode = BuySListNode(x);
    106. prev->next = newnode;
    107. newnode->next = pos;
    108. }
    109. }
    110. void SListErase(SLTNode** pphead, SLTNode* pos)
    111. {
    112. assert(pphead);
    113. assert(pos);
    114. if (*pphead == pos)
    115. {
    116. SListPopFront(pphead);
    117. }
    118. else
    119. {
    120. SLTNode* prev = *pphead;
    121. while (prev->next != pos)
    122. {
    123. prev = prev->next;
    124. }
    125. prev->next = pos->next;
    126. free(pos);
    127. pos = NULL;
    128. }
    129. }
    130. void SListInsertAfter(SLTNode* pos, SLTDataType x)
    131. {
    132. assert(pos);
    133. // 不在乎链接顺序
    134. SLTNode* newnode = BuySListNode(x);
    135. SLTNode* next = pos->next;
    136. pos->next = newnode;
    137. newnode->next = next;
    138. }
    139. void SListEraseAfter(SLTNode* pos)
    140. {
    141. assert(pos);
    142. if (pos->next == NULL)
    143. return;
    144. SLTNode* del = pos->next;
    145. pos->next = del->next;
    146. free(del);
    147. del = NULL;
    148. }

    3.3.2 带头+双向+循环链表增删查改实现

    1. typedef int LTDataType;
    2. typedef struct ListNode
    3. {
    4. struct ListNode* next;
    5. struct ListNode* prev;
    6. LTDataType data;
    7. }LTNode;
    8. //初始化
    9. LTNode* ListInit();
    10. //打印
    11. void ListPrint(LTNode* phead);
    12. //尾插
    13. void ListPushBack(LTNode* phead, LTDataType x);
    14. //头插
    15. void ListPushFront(LTNode* phead, LTDataType x);
    16. //尾删
    17. void ListPopBack(LTNode* phead);
    18. //头删
    19. void ListPopFront(LTNode* phead);
    20. //判断是否为空
    21. bool ListEmpty(LTNode* phead);
    22. // 在pos位置之前插入x
    23. void ListInsert(LTNode* pos, LTDataType x);
    24. // 删除pos位置的节点
    25. void ListErase(LTNode* pos);

    接口的实现:

    1. LTNode* BuyListNode(LTDataType x)
    2. {
    3. LTNode* newNode = (LTNode*)malloc(sizeof(LTNode));
    4. if (newNode == NULL)
    5. {
    6. perror("malloc fail");
    7. exit(-1);
    8. }
    9. newNode->data = x;
    10. newNode->next = NULL;
    11. newNode->prev = NULL;
    12. return newNode;
    13. }
    14. LTNode* ListInit()
    15. {
    16. LTNode* phead = BuyListNode(-1);
    17. phead->next = phead;
    18. phead->prev = phead;
    19. return phead;
    20. }
    21. void ListPrint(LTNode* phead)
    22. {
    23. assert(phead);
    24. LTNode* cur = phead->next;
    25. while (cur != phead)
    26. {
    27. printf("%d ", cur->data);
    28. cur = cur->next;
    29. }
    30. printf("\n");
    31. }
    32. void ListPushBack(LTNode* phead, LTDataType x)
    33. {
    34. assert(phead);
    35. LTNode* newNode = BuyListNode(x);
    36. LTNode* tail = phead->prev;
    37. tail->next = newNode;
    38. newNode->prev = tail;
    39. newNode->next = phead;
    40. phead->prev = newNode;
    41. }
    42. void ListPushFront(LTNode* phead, LTDataType x)
    43. {
    44. assert(phead);
    45. LTNode* newNode = BuyListNode(x);
    46. LTNode* next = phead->next;
    47. newNode->next = next;
    48. next->prev = newNode;
    49. newNode->prev = phead;
    50. phead->next = newNode;
    51. }
    52. void ListPopBack(LTNode* phead)
    53. {
    54. assert(phead);
    55. assert(phead->next != phead);
    56. LTNode* tail = phead->prev;
    57. LTNode* tailPrev = tail->prev;
    58. free(tail);
    59. tailPrev->next = phead;
    60. phead->prev = tailPrev;
    61. }
    62. void ListPopFront(LTNode* phead)
    63. {
    64. assert(phead);
    65. assert(phead->next != phead);
    66. LTNode* cur = phead->next;
    67. LTNode* next = phead->next->next;
    68. phead->next = next;
    69. next->prev = phead;
    70. free(cur);
    71. }
    72. bool ListEmpty(LTNode* phead)
    73. {
    74. assert(phead);
    75. return phead->next == phead;
    76. }
    77. void ListInsert(LTNode* pos, LTDataType x)
    78. {
    79. assert(pos);
    80. LTNode* prev = pos->prev;
    81. LTNode* newnode = BuyListNode(x);
    82. prev->next = newnode;
    83. newnode->prev = prev;
    84. newnode->next = pos;
    85. pos->prev = newnode;
    86. }
    87. void ListErase(LTNode* pos)
    88. {
    89. assert(pos);
    90. LTNode* prev = pos->prev;
    91. LTNode* next = pos->next;
    92. prev->next = next;
    93. next->prev = prev;
    94. free(pos);
    95. }

    4.顺序表和链表的区别
     

    不同点

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

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

  • 相关阅读:
    maven运行乱码,控制台运行乱码 idea,非法字符: ‘\ufeff‘需要class, interface或enum
    Go和Java实现命令模式
    Python爬虫详解:原理、常用库与实战案例
    Git 入门到精通
    51单片机BH1750智能补光灯台灯光强光照恒流源LED控制系统
    【密码学复习】第九讲 密钥管理(二)
    《中国垒球》:“五个融合”打开中国垒球发展新局面
    图解系列--理解L3交换机的性能与功能
    1、读写分离、分库分表
    Trello的替代方案有哪些?6种国内外选择!
  • 原文地址:https://blog.csdn.net/qq_54880517/article/details/125306153