• 【数据结构与算法】顺序表


    作者:旧梦拾遗186

    专栏:数据结构成长日记

     

    每日励志:

    生活从来都不会辜负谁,觉得丧的时候就要让自己忙起来,世界没有变小,我们一定要让自己越来越可爱的活下去,不要消耗生命,而是享受生活。

    前言:

    今天小编带大家学习数据结构当中的顺序表

    目录

    一.线性表

    二.顺序表 

    2.1概念及结构

    2.2 接口实现

    SeqList.h

    SeqList.c

    test.c 

    简化的顺序表代码 SeqList.c


    一.线性表

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

     

     

    二.顺序表 

    2.1概念及结构

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

    对于顺序表:我们可以分为静态顺序表和动态顺序表。

    对于静态顺序表,我们该如何去定义呢?

     

    我们可以看到,对于静态顺序表而言,里面的数组元素个数是固定的,不够灵活

    对于动态顺序表:

    1. //动态顺序表
    2. typedef int SLDataType;
    3. typedef struct SeqLIst
    4. {
    5. SLDataType* a;
    6. int size;//存储数据的个数
    7. int capacity;//存储空间的大小
    8. }SL;

     

    这里有一个问题

    对于应该扩容多少究竟扩多少倍这个问题?
    我们这里的代码实现默认的是扩容2倍(实际上空间满之后,不一定是扩容2倍):因为2倍比较合适,并不是必须一定是2倍,2倍2不会导致扩容过大或过小,如果扩容一次扩多了,将会存在空间浪费,扩少了,会导致频繁扩容,会导致效率损失。这并不是我们想要的

    同时,还有另外一个问题,需要我们进行探讨一下:

    在进行删除相关操作(如下面会说到的头删操作时)后面剩余的空间要不要进行缩容?
    对于删除顺序表没有缩容的概念,虽然可以缩容,都是我们不会去缩容,缩容要付出极大的代价。对于realloc我们知道扩容有2种情况(取决于后面的空间够不够):一种是原地扩容,返回原来的地址,另一种是异地扩容,返回的不是同一个地址。

    如果我们扩容扩的比原来还小呢?会不会进行缩容?可能会原地缩容或者异地缩容

    对于删除数据后面剩余的空间有点多,我们确实可以用realloc进行缩容,但是付出的代价有点多:可能会在新空间开一个空间,将其里面的数据进行拷贝,将旧空间释放掉。这就是要付出的代价,这是性能的代价。
    有没有想过,缩容之后,如果又要插入数据,这时候我们又得扩容,扩容又得申请新的空间,在释放旧空间,在插入数据。这不就是在反复横跳。况且现在计算机的空间也没那么少
    我们可以认为缩容是一种以时间换空间的方案。不缩容是在以空间换时间,而不缩容后面插入数据我们可能都不需要进行扩容,这就是不缩容的优势。虽然缩容是可以的,但是没有系统会去做。
     

    2.2 接口实现

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

     

    我们将会实现的功能是:

    初始化顺序表、销毁顺序表、尾插数据、头插数据、尾删数据、头删数据、查找数据、在某个位置插入数据、在某个位置删除数据、修改数据。以及中间实现过程中会涉及到的打印数据、扩容操作等。

    很显然,在实现某个位置插入数据的功能的时候,我们就能用在某个位置插入函数取代尾插和头插操作

    在实现某个位置删除数据的功能,我们就能用这个函数取代尾删和头删操作

    面对这么多的操作,我们采用模块化设计,分为3个板块,同时,我们应该在边实现功能函数的过程中边进行调试操作,不要让自己的代码出现过多的错误。我们可以在主函数的部分通过设计void TestSeqList()里面存放一些功能函数来看看自己的代码是否能够达到预期的效果,这点能够大大提高我们代码的准确性。
     

    SeqList.h

    1. #pragma once
    2. //#ifndef __SEQLIST_H__
    3. //#define __SEQLIST_H__
    4. //#endif
    5. #include
    6. #include
    7. #include
    8. 静态顺序表
    9. //#define N 10
    10. //typedef int SLDataType;
    11. //struct SeqList
    12. //{
    13. // SLDataType a[N];
    14. // int size;
    15. //};
    16. //动态顺序表
    17. typedef int SLDataType;
    18. typedef struct SeqLIst
    19. {
    20. SLDataType* a;
    21. int size; //存储数据的个数
    22. int capacity;//存储空间的大小
    23. }SL;
    24. //初始化
    25. void SLInit(SL* psl);
    26. //销毁
    27. void SLDestory(SL* psl);
    28. //打印
    29. void SLPrint(const SL* psl);
    30. //尾插头插 尾删头删
    31. //尾插
    32. void SLPushBack(SL* psl, SLDataType x);
    33. //头插
    34. void SLPushFront(SL* psl, SLDataType x);
    35. //尾删
    36. void SLPopBack(SL* psl);
    37. //头删
    38. void SLPopFront(SL* psl);
    39. //查找
    40. int SLFind(SL* psl, SLDataType x);
    41. //插入
    42. void SLInsert(SL* psl, size_t pos, SLDataType x);
    43. //删除
    44. void SLErase(SL* psl, size_t pos);
    45. //修改
    46. void SLModify(SL* psl, size_t pos, SLDataType x);

    SeqList.c

    这一部分就是对SeqList.h里面声明的函数进行实现的部分,是最为重要的部分,对于这一部分的函数,千万不要把SeList.h里面的函数全部实现完再去测试,那样子会大大提高工作量,出现错误很不好找,最好的办法就是写完一个函数去测试一个函数,调试看看有没有bug。这点至关重要。

    1. #include "SeqList.h"
    2. void SLPrint(const SL* psl)
    3. {
    4. assert(psl);
    5. for (int i = 0; i < psl->size; i++)
    6. {
    7. printf("%d ", psl->a[i]);
    8. }
    9. //注意换行
    10. printf("\n");
    11. }
    12. void SLInit(SL* psl)
    13. {
    14. assert(psl);
    15. psl->a = NULL;
    16. psl->capacity = psl->size = 0;
    17. }
    18. void SLDestory(SL* psl)
    19. {
    20. assert(psl);
    21. if (psl->a)
    22. {
    23. free(psl->a);
    24. psl->a = NULL;
    25. psl->capacity = psl->size = 0;
    26. }
    27. }
    28. //扩容,后面会用到扩容这个操作,我们干脆将其封装成一个函数即可
    29. void SLCheckCapacity(SL* psl)
    30. {
    31. assert(psl);
    32. //检查容量
    33. if (psl->size == psl->capacity)
    34. {
    35. //如果是0那就容量初始化为4,否则就增加2倍
    36. int newCapacity = psl->capacity == 0 ? 4 : psl->capacity * 2;
    37. //注意是sizeof(SLDataType)*newCapacity
    38. SLDataType* tmp = (SLDataType*)realloc(psl->a, sizeof(SLDataType) * newCapacity);
    39. //注意realloc会出现的情况
    40. if (NULL == tmp)
    41. {
    42. perror("realloc fail");
    43. return;
    44. //exit(-1);
    45. }
    46. psl->a = tmp;
    47. psl->capacity = newCapacity;
    48. }
    49. }
    50. //尾插
    51. void SLPushBack(SL* psl, SLDataType x)
    52. {
    53. assert(psl);
    54. SLCheckCapacity(psl);
    55. psl->a[psl->size] = x;
    56. psl->size++;
    57. //SLInsert(psl, psl->size, x);//直接调用SLInsetrt函数也可以实现尾插
    58. }
    59. //头插
    60. void SLPushFront(SL* psl, SLDataType x)
    61. {
    62. assert(psl);
    63. SLCheckCapacity(psl);
    64. int end = psl->size-1;
    65. while (end>=0)
    66. {
    67. psl->a[end+1] = psl->a[end];
    68. --end;
    69. }
    70. psl->a[0] = x;
    71. psl->size++;
    72. //SLInsert(psl, 0, x);//直接调用SLInsert也可以实现头插
    73. }
    74. //尾删
    75. void SLPopBack(SL* psl)
    76. {
    77. assert(psl);
    78. //温柔的检查——元素的合理性
    79. /*if (psl->size == 0)
    80. {
    81. return;
    82. }*/
    83. //暴力的检查,直接报错——元素的合理性
    84. assert(psl->size > 0);
    85. psl->size--;
    86. //SLErase(psl, psl->size - 1);//直接调用SLErase也可以实现尾删
    87. }
    88. //头删
    89. void SLPopFront(SL* psl)
    90. {
    91. assert(psl);
    92. assert(psl->size > 0);
    93. int begin = 0;
    94. while (begin < psl->size - 1)
    95. {
    96. psl->a[begin] = psl->a[begin + 1];
    97. ++begin;
    98. }
    99. psl->size--;
    100. //SLErase(psl, 0);//直接调用SLErase也可以实现头删
    101. }
    102. //查找
    103. int SLFind(SL* psl, SLDataType x)
    104. {
    105. assert(psl);
    106. for (int i = 0; i < psl->size; i++)
    107. {
    108. if (psl->a[i] == x)
    109. {
    110. return i;
    111. }
    112. }
    113. return -1;
    114. }
    115. //插入
    116. void SLInsert(SL* psl, size_t pos, SLDataType x)
    117. {
    118. assert(psl);
    119. assert(pos <=psl->size);
    120. SLCheckCapacity(psl);
    121. int end = psl->size - 1;
    122. //强转为int,这点很重要,因为pos为size_t类型,不强转会发生算术转化,永远跳不出循环
    123. while (end >=(int)pos)
    124. {
    125. psl->a[end + 1] = psl->a[end];
    126. --end;
    127. }
    128. psl->a[pos] = x;
    129. psl->size++;
    130. }
    131. //删除
    132. void SLErase(SL* psl, size_t pos)
    133. {
    134. assert(psl);
    135. assert(pos < psl ->size);
    136. size_t begin = pos;
    137. while (begin < psl->size - 1)
    138. {
    139. psl->a[begin] = psl->a[begin + 1];
    140. ++begin;
    141. }
    142. psl->size--;
    143. }
    144. //修改
    145. void SLModify(SL* psl, size_t pos, SLDataType x)
    146. {
    147. assert(psl);
    148. assert(pos < psl->size);
    149. psl->a[pos] = x;
    150. }

    test.c 

    温馨提示:一定要通过调用每个TestSeqList()函数确认里面涉及到的功能函数没有bug我们在去进行菜单的实现,同时,一旦里面的函数多了,我们极有可能忘记这个是测试什么功能函数的,所以我的建议是:写好注释,方便自己的理解复习,同时也让别人能够看得懂。不要本末倒置了。导致出现问题而不知道错在哪里,这样子得不偿失。

    (对于菜单,博主这里并没有全部完善,但是整个框架已经搭起来了,而且可以正确运行起来。如果有需要,直接进行补充即可,可以参考之前博主类似的菜单内容。)
     

    1. //测试尾插、打印、头插
    2. void TestSeqList1()
    3. {
    4. SL s;
    5. SLInit(&s);
    6. SLPushBack(&s, 1);
    7. SLPushBack(&s, 2);
    8. SLPushBack(&s, 3);
    9. SLPushBack(&s, 4);
    10. SLPushBack(&s, 5);
    11. SLPushBack(&s, 6);
    12. SLPrint(&s);
    13. SLPushFront(&s, 10);
    14. SLPushFront(&s, 20);
    15. SLPushFront(&s, 30);
    16. SLPrint(&s);
    17. SLDestory(&s);
    18. }
    19. //测试尾删
    20. void TestSeqList2()
    21. {
    22. SL s;
    23. SLInit(&s);
    24. SLPushBack(&s, 1);
    25. SLPushBack(&s, 2);
    26. SLPushBack(&s, 3);
    27. SLPushBack(&s, 4);
    28. SLPrint(&s);
    29. SLPopBack(&s);
    30. SLPopBack(&s);
    31. SLPrint(&s);
    32. SLPopBack(&s);
    33. SLPopBack(&s);
    34. SLPrint(&s);
    35. SLPopBack(&s);
    36. SLPrint(&s);
    37. SLPushBack(&s, 10);
    38. SLPushBack(&s, 20);
    39. SLPushBack(&s, 30);
    40. SLPushBack(&s, 40);
    41. SLPrint(&s);
    42. SLDestory(&s);
    43. }
    44. //测试头删
    45. void TestSeqList3()
    46. {
    47. SL s;
    48. SLInit(&s);
    49. SLPushBack(&s, 1);
    50. SLPushBack(&s, 2);
    51. SLPushBack(&s, 3);
    52. SLPushBack(&s, 4);
    53. SLPrint(&s);
    54. SLPopFront(&s);
    55. SLPopFront(&s);
    56. SLPrint(&s);
    57. SLDestory(&s);
    58. }
    59. //测试插入
    60. void TestSeqList4()
    61. {
    62. SL s;
    63. SLInit(&s);
    64. SLPushBack(&s, 1);
    65. SLPushBack(&s, 2);
    66. SLPushBack(&s, 3);
    67. SLPushBack(&s, 4);
    68. SLPrint(&s);
    69. SLInsert(&s, 2, 30);
    70. SLPrint(&s);
    71. SLInsert(&s, 0, 30);
    72. SLPrint(&s);
    73. /*int x = 0;
    74. scanf("%d", &x);
    75. int pos = SLFind(&s, x);
    76. if (pos != -1)
    77. {
    78. SLInsert(&s, pos, x * 100);
    79. }*/
    80. SLPrint(&s);
    81. }
    82. //测试删除
    83. void TestSeqList5()
    84. {
    85. SL s;
    86. SLInit(&s);
    87. SLPushBack(&s, 1);
    88. SLPushBack(&s, 2);
    89. SLPushBack(&s, 3);
    90. SLPushBack(&s, 4);
    91. SLPushBack(&s, 5);
    92. SLPrint(&s);
    93. SLErase(&s, 0);
    94. SLPrint(&s);
    95. int x = 0;
    96. scanf("%d", &x);
    97. int pos = SLFind(&s, x);
    98. if (pos != -1)
    99. {
    100. SLErase(&s, pos);
    101. }
    102. SLPrint(&s);
    103. }
    104. void menu()
    105. {
    106. printf("**********************\n");
    107. printf("1.尾插数据 2.头插数据\n");
    108. printf("3.尾删数据 4.头删数据\n");
    109. printf("5.查找数据 6.插入数据\n");
    110. printf("7.删除数据 8.修改数据\n");
    111. printf("9.打印数据 -1.退出\n");
    112. printf("**********************\n");
    113. }
    114. int main()
    115. {
    116. SL s;
    117. SLInit(&s);
    118. int option = 0;
    119. int x = 0;
    120. do
    121. {
    122. menu();
    123. printf("请输入你的操作:>");
    124. scanf("%d", &option);
    125. switch (option)
    126. {
    127. case 1:
    128. printf("请连续输入要插入的数据,-1为结束\n");
    129. scanf("%d", &x);
    130. while (x != -1)
    131. {
    132. SLPushBack(&s, x);
    133. scanf("%d", &x);
    134. }
    135. break;
    136. case 2:
    137. //后面内容自己进行补充说明
    138. break;
    139. case 3:
    140. break;
    141. case 4:
    142. break;
    143. case 5:
    144. break;
    145. case 6:
    146. break;
    147. case 7:
    148. break;
    149. case 8:
    150. break;
    151. case 9:
    152. SLPrint(&s);
    153. default:
    154. return;
    155. }
    156. } while (option);
    157. SLDestory(&s);
    158. return 0;
    159. }

    简化的顺序表代码 SeqList.c

    1. #include "SeqList.h"
    2. void SLPrint(const SL* psl)
    3. {
    4. assert(psl);
    5. for (int i = 0; i < psl->size; ++i)
    6. {
    7. printf("%d ", psl->a[i]);
    8. }
    9. printf("\n");
    10. }
    11. void SLInit(SL* psl)
    12. {
    13. assert(psl);
    14. psl->a = NULL;
    15. psl->capacity = psl->size = 0;
    16. }
    17. void SLDestory(SL* psl)
    18. {
    19. assert(psl);
    20. /*if (psl->a)
    21. {*/
    22. free(psl->a);
    23. psl->a = NULL;
    24. psl->capacity = psl->size = 0;
    25. //}
    26. }
    27. void SLCheckCapacity(SL* psl)
    28. {
    29. // 检查容量
    30. if (psl->size == psl->capacity)
    31. {
    32. int newCapcity = psl->capacity == 0 ? 4 : psl->capacity * 2;
    33. SLDataType* tmp = (SLDataType*)realloc(psl->a, newCapcity*sizeof(SLDataType));
    34. if (tmp == NULL)
    35. {
    36. perror("realloc fail");
    37. return;
    38. //exit(-1);
    39. }
    40. psl->a = tmp;
    41. psl->capacity = newCapcity;
    42. }
    43. }
    44. // https://cplusplus.com/reference/
    45. void SLPushBack(SL* psl, SLDataType x)
    46. {
    47. /*assert(psl);
    48. SLCheckCapacity(psl);
    49. psl->a[psl->size] = x;
    50. psl->size++;*/
    51. SLInsert(psl, psl->size, x);
    52. }
    53. void SLPushFront(SL* psl, SLDataType x)
    54. {
    55. //assert(psl);
    56. //SLCheckCapacity(psl);
    57. 挪动数据
    58. //int end = psl->size - 1;
    59. //while (end >= 0)
    60. //{
    61. // psl->a[end + 1] = psl->a[end];
    62. // --end;
    63. //}
    64. //psl->a[0] = x;
    65. //psl->size++;
    66. SLInsert(psl, 0, x);
    67. }
    68. void SLPopBack(SL* psl)
    69. {
    70. //assert(psl);
    71. 温柔的检查
    72. ///*if (psl->size == 0)
    73. //{
    74. //return;
    75. //}*/
    76. 暴力的检查
    77. //assert(psl->size > 0);
    78. //psl->size--;
    79. SLErase(psl, psl->size - 1);
    80. }
    81. void SLPopFront(SL* psl)
    82. {
    83. //assert(psl);
    84. //assert(psl->size > 0);
    85. ///*int begin = 0;
    86. //while (begin < psl->size-1)
    87. //{
    88. // psl->a[begin] = psl->a[begin + 1];
    89. // ++begin;
    90. //}*/
    91. //int begin = 1;
    92. //while (begin < psl->size)
    93. //{
    94. // psl->a[begin-1] = psl->a[begin];
    95. // ++begin;
    96. //}
    97. //--psl->size;
    98. SLErase(psl, 0);
    99. }
    100. int SLFind(SL* psl, SLDataType x)
    101. {
    102. assert(psl);
    103. for (int i = 0; i < psl->size; ++i)
    104. {
    105. if (psl->a[i] == x)
    106. {
    107. return i;
    108. }
    109. }
    110. return -1;
    111. }
    112. //void SLInsert(SL* psl, int pos, SLDataType x)
    113. void SLInsert(SL* psl, size_t pos, SLDataType x)
    114. {
    115. assert(psl);
    116. assert(pos <= psl->size);
    117. SLCheckCapacity(psl);
    118. // 挪动数据
    119. /*int end = psl->size - 1;
    120. while (end >= (int)pos)
    121. {
    122. psl->a[end + 1] = psl->a[end];
    123. --end;
    124. }*/
    125. size_t end = psl->size;
    126. while (end > pos)
    127. {
    128. psl->a[end] = psl->a[end-1];
    129. --end;
    130. }
    131. psl->a[pos] = x;
    132. ++psl->size;
    133. }
    134. // 顺序表删除pos位置的值
    135. void SLErase(SL* psl, size_t pos)
    136. {
    137. assert(psl);
    138. assert(pos < psl->size);
    139. size_t begin = pos;
    140. while (begin < psl->size - 1)
    141. {
    142. psl->a[begin] = psl->a[begin + 1];
    143. ++begin;
    144. }
    145. psl->size--;
    146. }
    147. void SLModify(SL* psl, size_t pos, SLDataType x)
    148. {
    149. assert(psl);
    150. assert(pos < psl->size);
    151. psl->a[pos] = x;
    152. }

     结语:

    每个人的成长都是能力和想要得到的东西,不断匹配的过程,当你的才华和欲望不匹配时,你就该静下心来学习了,如果小编的总结能对你有所帮助,希望小伙伴们三连加关注哦,你的支持是小编创作的最大动力。

     

     

  • 相关阅读:
    企业AI虚拟ip形象定制的应用场景
    微服务性能分析|Pyroscope 在 Rainbond 上的实践分享
    [Java]_[初级]_[以SAX流的方式高效读取XML大文件]
    Matlab:指定时区
    【系统架构设计师】第三章 数据库系统
    MySQL-数据类型
    vuejs3+elementPlus后台管理系统,左侧菜单栏制作,跳转、默认激活菜单
    数据库设计 Relational Language
    Windows10下Tomcat8.5安装教程
    如何获取HuggingFace的Access Token;如何获取HuggingFace的API Key
  • 原文地址:https://blog.csdn.net/weixin_67900732/article/details/126120248