当前位置:   article > 正文

【数据结构】——顺序表介绍(独家介绍,小白必看!!)

顺序表

重点和易错点都用彩笔标记出来了,放心食用!!

数据结构分为线性表非线性表,今天我们要学习的顺序表就是线性表中的一个小类。那么,何为线性表,线性表是指n个具有相同性质的数据元素的有限序列,常见的线性表有:顺序表、链表、栈、队列、字符串等等。注意,线性表的物理结构不一定是线性的,它在逻辑结构上一定是线性的(这个很好理解,等我们学完顺序表和单链表这对黄金搭档,就明白这句话的含义了)

今天我们重点讲解顺序表,顺序表是线性表,顺序表在逻辑结构和物理结构上都是线性的


 1、概念及结构

顺序表(SeqList):顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构(连续存储数据,不能跳跃)。

一般我们用数组存储顺序表,在数组上完成数据的增删查改。

顺序表分为两种类型:

  1. //静态顺序表
  2. #define N 7
  3. typedef int SLDateType;
  4. typedef struct SeqList
  5. {
  6. SLDateType array[N]; //定长数组
  7. size_t size; //有效数据长度,size_t是无符号整形
  8. }SeqList;
  9. //动态顺序表
  10. typedef int SLDateType;
  11. typedef struct SeqList
  12. {
  13. SLDateType* array; //指向动态开辟的数组
  14. size_t size; //数据中存储的数据
  15. size_t capacity; //数组的容量
  16. }SeqList;

 我建议用动态顺序表,比起静态顺序表,动态的更加好调整顺序表的大小。接下来,我也会以动态顺序表为例,介绍如何实现动态顺序表的增删查改。


2、接口实现

2.1 功能要求

我们要实现以下功能

  1. //顺序表初始化
  2. void SeqListInit(SeqList* psl); //psl p指针,sl顺序表
  3. //检查空间,如果满了,进行增容
  4. void SeqListCheckCapacity(SeqList* psl);
  5. //顺序表尾插
  6. void SeqListPushBack(SeqList* psl,SLDateType x);
  7. //顺序表尾删
  8. void SeqListPopBack(SeqList* psl);
  9. //顺序表头插
  10. void SeqListPushFront(SeqList* psl, SLDateType x);
  11. //顺序表头删
  12. void SeqListPopFront(SeqList* psl);
  13. //顺序表查找
  14. int SeqListFind(SeqList* psl, SLDateType x);
  15. //顺序表在pos位置插入x
  16. void SeqListInsert(SeqList* psl, size_t pos,SLDateType x);
  17. //顺序表删除pos位置的值
  18. void SeqListErase(SeqList* psl, size_t pos);
  19. //顺序表销毁
  20. void SeqListDestory(SeqList* psl);
  21. //打印顺序表
  22. void PrintSL(SeqList* psl);
  23. //修改顺序表
  24. void SLModify(SeqList* psl, size_t pos, SLDateType x);

2.2 功能实现

2.2.1 打印顺序表

这里提一嘴,我建议在每写一个功能就测试一下,千万不要把大部分功能写完再统一测试,那样你的Bug可能会99+(别问我为什么知道)。

  1. //打印顺序表
  2. void SeqListPrint(SeqList* psl)
  3. {
  4. assert(psl);
  5. for(int i=0;i<psl->size;i++)
  6. {
  7. printf("%d ", psl->array[i]);
  8. }
  9. printf('\n');
  10. }

2.2.2 顺序表初始化

链表初始化没什么好说的,我直接上代码了。

  1. void SeqListInit(SeqList*psl)
  2. {
  3. assert(psl); //断言psl是不是空指针
  4. psl->array=NULL;
  5. psl->size=psl->capacity=0;
  6. }

2.2.3 检查顺序表的空间,增容

思路讲解:

  1. 判断顺序表空间是否满了,也就是判断是否需要增容就是要看psl->size==psl->capacity?增容:不增容。
  2. 用条件运算符来确定增容后的新空间的大小,如果是仍未存储数据的新链表,则先让链表的容量为4(这个数值可以随便设置);如果已经存储了数据,但容量不够了,我们就让链表的空间每次增加一倍,也就是变成原来的两倍(可能有人会疑惑,为什么是两倍,其实这个也是为了减少数据的浪费,变成2倍比较保守)。
  3. 在扩容时用realloc,当realloc的第一个参数为0时,其效果等同于malloc用realloc可以完美实现最初开辟空间和增容的功能
  4. 检查tmp是否为空,也就是检查是否成功开辟了新的空间,非空则把tmp赋值给psl->array最后千万不要忘记更改capacity的值
  1. //检查容量,增容
  2. void CheckCapacity(SeqList* psl)
  3. {
  4. assert(psl);
  5. if (psl->size == psl->capacity)
  6. {
  7. size_t newcapacity = (psl->capacity == 0 ? 4 : psl->capacity * 2);
  8. //这里用realloc非常好
  9. SLDateType* tmp = (SLDateType*)realloc(psl->array, psl->capacity * sizeof(SLDateType));
  10. if (tmp == NULL)
  11. {
  12. perror("realloc:");
  13. return;
  14. }
  15. psl->array = tmp;
  16. psl->capacity = newcapacity;
  17. }
  18. }

2.2.4 顺序表尾插

这里就需要注意在尾插前检查容量,并且不要忘记psl->size++

  1. //顺序表尾插
  2. void SeqListPushBack(SeqList* psl, SLDateType x)
  3. {
  4. assert(psl);
  5. CheckCapacity(psl);
  6. psl->array[psl->size] = x;
  7. //别忘记让psl->size+1
  8. psl->size++;
  9. }

2.2.5 顺序表尾删

注意:不管是进行头删还是进行尾删,我们都要检查psl->size是否大于0,我也提供了两种检查的方式,选其一即可。

  1. //顺序表尾删
  2. void SeqListPopBack(SeqList* psl)
  3. {
  4. assert(psl);
  5. //千万不要忘记检查psl->size是否大于0
  6. //检查方式一:温柔的检查
  7. /*if (psl->size == 0)
  8. return;*/
  9. //检查方式二:暴力的检查
  10. assert(psl->size>0);
  11. psl->size--;
  12. }

2.2.6 顺序表头插

这个也没什么好说的,直接上代码。

  1. void SeqListPushFront(SeqList*psl, SLDateType x)
  2. {
  3. assert(psl);
  4. CheckCapacity(psl);
  5. for (int i = psl->size;i>0; i++)
  6. {
  7. psl->array[i] = psl->array[i - 1];
  8. }
  9. psl->array[0] = x;
  10. psl->size++;
  11. }

2.2.7 顺序表头删

删除数据不要忘记暴力检查psl->size。

  1. //顺序表头删
  2. void SeqListPopFront(SeqList*psl)
  3. {
  4. assert(psl);
  5. //暴力检查
  6. assert(psl->size);
  7. for (int i = 0; i < psl->size - 1; i++)
  8. {
  9. psl->array[i] = psl->array[i + 1];
  10. }
  11. psl->size--;
  12. }

2.2.8 顺序表查找

找到了,返回值为数组下标;未找到,返回值为-1。

  1. //顺序表查找(返回下标,找不到就返回-1)
  2. int SeqListFind(SeqList* psl, SLDateType x)
  3. {
  4. assert(psl);
  5. for (int i = 0; i < psl->size; i++)
  6. {
  7. if (psl->array[i] == x)
  8. {
  9. return i;
  10. }
  11. }
  12. return -1;
  13. }

2.2.9 在pos位置插入值

这个功能在实现的过程中一不小心就出问题,注意注意!!!!

  1. //顺序表在pos位置插入x(pos为下标值)
  2. void SeqListInsert(SeqList* psl, size_t pos, SLDateType x)
  3. {
  4. assert(psl);
  5. assert(pos<=psl->size);//注意:pos是可以等于psl->size,此时就相当于尾插
  6. CheckCapacity(psl);
  7. //写法一:
  8. for (int i = psl->size-1; i >= pos; i--)
  9. {
  10. psl->array[i + 1] = psl->array[i];
  11. }
  12. //写法二:
  13. size_t end=psl->size-1;
  14. while(end)
  15. {
  16. psl->array[end+1]=psl->array[end];
  17. end--;
  18. }
  19. psl->array[pos] = x;
  20. psl->size++;
  21. }

当在下标为0的位置上插入一个数据时,i从psl->size-1到0,i进行i--操作,此时i=-1,再执行i>=pos操作,此时会停止循环吗?答案是不会,大家可以去调试,确实不会让循环停下。

那为什么呢?因为pos为size_t的类型,size_t为无符号整形-,当int(有符号整形)和size_t(无符号整形)比较大小时,int型的数据会发生算数转换,转换成unsigned int型,此时为负数的i就变成了很大的数字,自然而然比0大,因此会进入死循环。

那怎么解决呢?

针对写法一的解决办法:

  1. for (int i = psl->size; i > pos; i--)
  2. {
  3. psl->array[i] = psl->array[i-1];
  4. }

此时,避免了i==0的情况,保证i始终大于0,这样i--就不会出现问题了。

针对写法二的解决方法:

  1. size_t end=psl->size;
  2. while(end)
  3. {
  4. psl->array[end]=psl->array[end-1];
  5. end--;
  6. }

有人肯定会不理解,为什么非让pos为size_t类型,如果让pos变成int型,只需要保证pos大于等于0就可以了,size_t显得好像更麻烦一些。其实,我们把pos写成size_t是因为库也是这样写的,我们严格根据库的声明来实现,以后当我们涉及到的问题更加复杂时,用size_t做接口肯定比int更好。

2.2.10 顺序表删除pos的位置

这里注意好循环时i的上下限就可以了。

  1. //顺序表删除pos的位置
  2. void SeqListErase(SeqList*psl, size_t pos)
  3. {
  4. assert(psl);
  5. assert(pos < psl->size);
  6. for (int i = pos;i<psl->size-1;i++)
  7. {
  8. psl->array[i] = psl->array[i + 1];
  9. }
  10. psl->size--;
  11. }

2.2.11 修改pos位置的值

  1. //修改顺序表的值
  2. void SeqListModify(SeqList*psl, size_t pos,SLDateType x)
  3. {
  4. assert(psl);
  5. assert(pos < psl->size);
  6. psl->array[pos] = x;
  7. }

2.2.12 销毁顺序表

  1. //销毁顺序表
  2. void SeqListDestory(SeqList*psl)
  3. {
  4. assert(psl);
  5. free(psl->array);
  6. psl->array = NULL;
  7. psl->size = psl->capacity = 0;
  8. }

3、总代码

SeqList.h

  1. #pragma once
  2. #include<stdio.h>
  3. #include<stdlib.h>
  4. #include<assert.h>
  5. typedef int SLDateType;
  6. 静态版本
  7. //#define N 7
  8. //typedef struct SeqList
  9. //{
  10. // SLDateType array[N]; //静态数组
  11. // size_t size; //有效数据个数
  12. //}SeqList;
  13. //动态版本
  14. typedef struct SeqList
  15. {
  16. SLDateType* array; //指向动态开辟的数组
  17. size_t size; //有效数据个数
  18. size_t capacity; //容量空间的大小
  19. }SeqList;
  20. //基本增删查改接口
  21. //顺序表初始化
  22. void SeqListInit(SeqList* psl); //psl p指针,sl顺序表
  23. //检查空间,如果满了,进行增容
  24. void CheckCapacity(SeqList* psl);
  25. //顺序表尾插
  26. void SeqListPushBack(SeqList* psl,SLDateType x);
  27. //顺序表尾删
  28. void SeqListPopBack(SeqList* psl);
  29. //顺序表头插
  30. void SeqListPushFront(SeqList* psl, SLDateType x);
  31. //顺序表头删
  32. void SeqListPopFront(SeqList* psl);
  33. //顺序表查找
  34. int SeqListFind(SeqList* psl, SLDateType x);
  35. //顺序表在pos位置插入x
  36. void SeqListInsert(SeqList* psl, size_t pos,SLDateType x);
  37. //顺序表删除pos位置的值
  38. void SeqListErase(SeqList* psl, size_t pos);
  39. //顺序表销毁
  40. void SeqListDestory(SeqList* psl);
  41. //打印顺序表
  42. void PrintSL(SeqList* psl);
  43. //修改顺序表
  44. void SLModify(SeqList* psl, size_t pos, SLDateType x);

SeqList.c

  1. #include"SeqList.h"
  2. //打印顺序表
  3. void PrintSL(const SeqList* psl)
  4. {
  5. assert(psl);
  6. for (int i = 0; i < psl->size; i++)
  7. {
  8. printf("%d ", psl->array[i]);
  9. }
  10. printf("\n");
  11. }
  12. //初始化顺序表
  13. void SeqListInit(SeqList* psl)
  14. {
  15. assert(psl);
  16. psl->array = NULL;
  17. psl->size = psl->capacity = 0;
  18. }
  19. //检查容量,增容
  20. void CheckCapacity(SeqList* psl)
  21. {
  22. assert(psl);
  23. if (psl->size == psl->capacity)
  24. {
  25. size_t newcapacity = (psl->capacity == 0 ? 4 : psl->capacity * 2);
  26. //这里用realloc非常好,当realloc的第一个参数为0时,其效果等同于malloc
  27. //用realloc可以完美实现最初开辟空间和增容的功能
  28. //一定要注意:是newcapacity,而不是psl->capacity
  29. SLDateType* tmp = (SLDateType*)realloc(psl->array, newcapacity * sizeof(SLDateType));
  30. if (tmp == NULL)
  31. {
  32. perror("realloc:");
  33. return;
  34. }
  35. psl->array = tmp;
  36. psl->capacity = newcapacity;
  37. }
  38. }
  39. //顺序表尾插
  40. void SeqListPushBack(SeqList* psl, SLDateType x)
  41. {
  42. assert(psl);
  43. CheckCapacity(psl);
  44. psl->array[psl->size] = x;
  45. //也可以用SeqListInsert(psl,psl->size,x),但经常用上面的方法,可读性更强
  46. //可别忘了让psl->size加1
  47. psl->size++;
  48. }
  49. //顺序表头插
  50. void SeqListPushFront(SeqList* psl, SLDateType x)
  51. {
  52. assert(psl);
  53. CheckCapacity(psl);
  54. for (int i = psl->size; i > 0; i--)
  55. {
  56. psl->array[i] = psl->array[i - 1];
  57. }
  58. psl->array[0] = x;
  59. //也可以用SeqListInsert(psl,0,x),但经常用上面的方法,可读性更强
  60. psl->size++;
  61. }
  62. //顺序表尾删
  63. void SeqListPopBack(SeqList* psl)
  64. {
  65. assert(psl);
  66. //千万不要忘记检查size是否大于0
  67. //温柔地检查SL中的size是否大于0
  68. /*if (psl->size == 0)
  69. {
  70. return;
  71. }*/
  72. //暴力的检查
  73. assert(psl->size > 0);
  74. psl->size--;
  75. }
  76. //顺序表头删
  77. void SeqListPopFront(SeqList* psl)
  78. {
  79. assert(psl);
  80. assert(psl->size > 0);
  81. for (int i = 0; i < (psl->size - 1); i++)
  82. {
  83. psl->array[i] = psl->array[i + 1];
  84. }
  85. psl->size--;
  86. }
  87. //顺序表查找
  88. int SeqListFind(SeqList* psl, SLDateType x)
  89. {
  90. assert(psl);
  91. for (int i = 0; i < psl->size; i++)
  92. {
  93. if (psl->array[i] == x)
  94. {
  95. return i;
  96. }
  97. }
  98. return -1;
  99. }
  100. //顺序表在pos位置插入x(pos指的是下标)
  101. void SeqListInsert(SeqList* psl,size_t pos,SLDateType x)
  102. {
  103. assert(psl);
  104. CheckCapacity(psl);
  105. assert(pos <= psl->size);//size_t是无符号整形,所以不需要担心pos小于0
  106. //而pos等于psl->size,此时就不是插在中间了,而是尾插了。
  107. //易错:pos=0
  108. for (int i = psl->size; i >pos; i--)
  109. {
  110. psl->array[i] = psl->array[i - 1];
  111. }
  112. psl->array[pos] = x;
  113. psl->size++;
  114. }
  115. //顺序表删除pos位置的值
  116. void SeqListErase(SeqList* psl, size_t pos)
  117. {
  118. assert(psl);
  119. assert(pos<psl->size);
  120. for (int i = pos; i < psl->size; i++)
  121. {
  122. psl->array[i] = psl->array[i + 1];
  123. }
  124. psl->size--;
  125. }
  126. //顺序表销毁
  127. void SeqListDestory(SeqList* psl)
  128. {
  129. assert(psl);
  130. free(psl->array);
  131. psl->array = NULL;
  132. psl->capacity = psl->size = 0;
  133. }
  134. //修改顺序表
  135. void SLModify(SeqList* psl, size_t pos, SLDateType x)
  136. {
  137. assert(psl);
  138. assert(psl < psl->size);
  139. psl->array[pos] = x;
  140. }

test.c

test.c可以自己写,记得引用头文件就可以。

  1. #include"SeqList.h"
  2. int main()
  3. {
  4. SeqList SL;
  5. SeqListInit(&SL);
  6. SeqListPushBack(&SL, 5);
  7. SeqListPushBack(&SL, 2);
  8. SeqListPushFront(&SL, 0);
  9. PrintSL(&SL);
  10. SeqListInsert(&SL, 2, 3);
  11. PrintSL(&SL);
  12. SeqListInsert(&SL, 2, 3);
  13. PrintSL(&SL);
  14. return 0;
  15. }

这是数据结构第二篇文章了,数据结构有些小难♂,但别担心,快关注我跟我一起坚持学习吧!(*^▽^*)

如果喜欢我的文章就给我点个赞再走吧!下次见!拜拜 ┏(^0^)┛

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

闽ICP备14008679号