• 详解初阶数据结构之顺序表(SeqList)——单文件实现SeqList的增删查改


    目录

    一、线性表

    二、顺序表

    2.1概念及结构

    2.2接口实现

    2.3动态顺序表的创建

    2.3动态顺序表的初始化

    2.3.1传值初始化

    2.3.2传址初始化

    2.4动态顺序表的清空

    2.5动态顺序表的扩容

    2.6动态顺序表内容的打印

    三、动态顺序表的使用

    3.1尾插尾删

    3.1.1尾插

    3.1.2尾删

    3.2头插头删

    3.2.1头插

    3.2.2头删

    3.3在pos位置插入x

    3.4删除pos位置的值

    3.5修改某个位置的值

    四、完整代码


    一、线性表

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

    二、顺序表

    2.1概念及结构

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

    顺序表一般分为:

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

    1. //静态顺序表
    2. #define N 100
    3. struct SeqList
    4. {
    5. int a[N];//定长数组
    6. int size;//有效数据的个数
    7. };

     

    缺点:不是很灵活

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

    2.2接口实现

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

    所谓动态其实指的这个结构体里的指针是动态内存开辟来的,是可变的,用的时候动态开辟,不够的话继续开辟,程序结束的时候释放。

    2.3动态顺序表的创建

    1. typedef int SLDatatype;//将int重命名为SLDatatype
    2. typedef struct SeqList
    3. {
    4. SLDatatype* a;//指向动态开辟的数组
    5. SLDatatype capacity;//容量
    6. SLDatatype size;//有效数据的个数
    7. }SL;//将结构体SeqList重命名为SL

    2.3动态顺序表的初始化

    2.3.1传值初始化

    1. //传值初始化
    2. void SLInit(SL s)
    3. {
    4. s.a = NULL;
    5. s.size = 0;
    6. s.capacity = 0;
    7. }

     函数那个章节我们学过形参只是实参的临时拷贝,并没有实际作用,生命周期短,出了函数的作用域就会销毁,我们不考虑这种初始化方式。

    2.3.2传址初始化

    1. //传址初始化
    2. void SLInit(SL* ps)
    3. {
    4. ps->a = 0;
    5. ps->capacity = 0;
    6. ps->size = 0;
    7. }
    1. void SLInit(SL* ps)
    2. {
    3. ps->a = (SLDatatype*)malloc(sizeof(SLDatatype) * 4);//开辟了4个字节的空间
    4. if (ps->a == NULL)
    5. {
    6. perror("malloc failed");
    7. exit(-1);
    8. }
    9. ps->capacity = 4;//开辟了空间就要给容量赋值
    10. ps->size = 0;
    11. }

    上面两种初始化方式都可以给予结构体成员变量赋值,但是我们使用第二种,因为第二种为我们开辟了空间。


    2.4动态顺序表的清空

    1. void SLDestr(SL* ps)
    2. {
    3. free(ps->a);
    4. ps->a = NULL;
    5. ps->capacity = 0;//内存释放,容量清零
    6. ps->size = 0;//内存释放,有效数据清零
    7. }

    2.5动态顺序表的扩容

    1. void SLCheckcapacity(SL* ps)
    2. {
    3. if (ps->size == ps->capacity)
    4. {
    5. SLDatatype* tmp = (SLDatatype*)realloc(ps->a, ps->capacity * 2 *( sizeof(SLDatatype)));//扩容尾原来的倍数
    6. if (tmp == NULL)
    7. //判断是否扩容失败
    8. {
    9. perror("realloc failed");
    10. exit(-1);
    11. }
    12. ps->a = tmp;
    13. ps->capacity *= 2;//扩容后修改原来的容量
    14. }
    15. }

    这就是所谓的动态,当我们空间不够时,就需要开辟新的空间,使用realloc函数要注意是否开辟成功,定义一个中间指针,当开辟成功时将这个指针赋值给动态数组中的指针。 

    2.6动态顺序表内容的打印

    1. void SLprint(SL* ps)
    2. {
    3. int i = 0;
    4. for (i = 0; i < ps->size; i++)
    5. {
    6. printf("%d ", ps->a[i]);
    7. }
    8. printf("\n");
    9. }

    size为有效数据个数,使用循环打印其中的有效数据。 

    三、动态顺序表的使用

    3.1尾插尾删

    3.1.1尾插

    1. void SLPushBack(SL* ps, SLDatatype x)
    2. {
    3. SLCheckcapacity(ps);//检查空间是否足够插入
    4. ps->a[ps->size] = x;//赋值
    5. ps->size++;//插入一个有效数据,有效数据个数加一
    6. }

     首先一定要检查规矩是否足够,根据上面开辟的空间,容量为4,有效数据为size为0,所以从第一个空间开始插入数据。

    3.1.2尾删

    1. //尾删
    2. void SLPopBack(SL* ps)
    3. {
    4. assert(ps->size > 0);//判断是否会造成越界
    5. if (ps->size == 0)
    6. {
    7. return;
    8. }
    9. ps->size--;//删除一个数据,有效数据个数减一
    10. }

    插入数据后size的大小也会变化,数组中最后一个数字的下标刚好和size的大小一样我们只需要将size减1就行。 

    3.2头插头删

    3.2.1头插

    1. void SLPushFront(SL* ps, SLDatatype x)
    2. {
    3. SLCheckcapacity(ps);//检查空间是否足够
    4. int end = ps->size;
    5. while (end > 0)
    6. {
    7. ps->a[end] = ps->a[end - 1];//将前一个数据后移动
    8. end--;
    9. }
    10. ps->a[0] = x;//将x赋给初始位置
    11. ps->size++;//加入一个数字,有效数据个数加1
    12. }

     老规矩一定要检查空间是否足够,头部插入数据我们只需要将原来的数据往后移动一格就将第一格的位置空出来,再将数值插入就行,插入一个数据,有效数据加1即可。

    3.2.2头删

    1. void SLPopFront(SL* ps)
    2. {
    3. assert(ps->size > 0);//防止越界访问
    4. if (ps->size==0)
    5. {
    6. return;
    7. }
    8. int begin = 0;
    9. while (begin < ps->size)
    10. {
    11. ps->a[begin] = ps->a[begin+1];//将后一个数据往前移动
    12. begin++;
    13. }
    14. ps->size--;//减少一个数字,有效数据减1
    15. }

    这里的删除并不是真正意义上的删除,我们只需要将原来的数据往前移动一位使后一位的数据覆盖在前一位,这就做到了删除,顺便再将有效数据减1就行。 

    3.3在pos位置插入x

    1. void SLInsert(SL* ps, int pos, int x)
    2. {
    3. assert(pos >= 0 && pos <= ps->size);//防止越界访问
    4. SLCheckcapacity(ps);
    5. int end = ps->size;
    6. while (end >=pos)
    7. {
    8. ps->a[end] = ps->a[end-1];//和头插的思想差不多,将数据后移
    9. end--;
    10. }
    11. ps->a[pos] = x;//将x赋值给pos位置
    12. ps->size++;//有效数据加1
    13. }

    我们可以这样理解:将pos看成初始位置,是不是就转化为头插了?按照头插的思想就可以完成在pos位置上插入x。 

    3.4删除pos位置的值

    1. void SLErase(SL* ps, int pos)
    2. {
    3. assert(pos >= 0 && pos <= ps->size);//防止越界访问
    4. SLCheckcapacity(ps);
    5. int begin = pos;
    6. while (begin < ps->size)
    7. {
    8. ps->a[begin] = ps->a[begin + 1];//和头删的思想差不多,将数据前移
    9. begin++;
    10. }
    11. ps->size--;//有效数据减1
    12. }

    我们会发现3.4和3.5不仅可以做到某个位置值的插入和删除,也可以做到尾插尾删和头插头删。 

    3.5修改某个位置的值

    1. void SLModify(SL* ps, SLDatatype pos, SLDatatype x)
    2. {
    3. assert(pos >= 0 && pos < ps->size);//防止越界
    4. ps->a[pos] = x;
    5. }

     这样修改某个位置的值看起来是挺麻烦,但是是为了安全考虑。

    四、完整代码

    1. #define _CRT_SECURE_NO_WARNINGS 67
    2. #include<stdio.h>
    3. #include<assert.h>
    4. #include<stdlib.h>
    5. //静态顺序表
    6. //#define N 100
    7. //struct SeqList
    8. //{
    9. // int a[N];//定长数组
    10. // int size;//有效数据的个数
    11. //};
    12. //动态顺序表
    13. //创建
    14. typedef int SLDatatype;
    15. typedef struct SeqList
    16. {
    17. SLDatatype* a;//指向动态开辟的数组
    18. SLDatatype capacity;//容量
    19. SLDatatype size;//有效数据的个数
    20. }SL;
    21. //传值初始化
    22. //void SLInit(SL s)
    23. //{
    24. // s.a = NULL;
    25. // s.size = 0;
    26. // s.capacity = 0;
    27. //}
    28. //传址初始化
    29. //void SLInit(SL* ps)
    30. //{
    31. // ps->a = 0;
    32. // ps->capacity = 0;
    33. // ps->size = 0;
    34. //}
    35. void SLInit(SL* ps)
    36. {
    37. ps->a = (SLDatatype*)malloc(sizeof(SLDatatype) * 4);//开辟了4个字节的空间
    38. if (ps->a == NULL)
    39. {
    40. perror("malloc failed");
    41. exit(-1);
    42. }
    43. ps->capacity = 4;
    44. ps->size = 0;
    45. }
    46. //清空
    47. void SLDestr(SL* ps)
    48. {
    49. free(ps->a);
    50. ps->a = NULL;
    51. ps->capacity = 0;
    52. ps->size = 0;
    53. }
    54. //打印
    55. void SLprint(SL* ps)
    56. {
    57. int i = 0;
    58. for (i = 0; i < ps->size; i++)
    59. {
    60. printf("%d ", ps->a[i]);
    61. }
    62. printf("\n");
    63. }
    64. //检查容量
    65. void SLCheckcapacity(SL* ps)
    66. {
    67. if (ps->size == ps->capacity)
    68. {
    69. SLDatatype* tmp = (SLDatatype*)realloc(ps->a, ps->capacity * 2 *( sizeof(SLDatatype)));//扩容尾原来的倍数
    70. if (tmp == NULL)
    71. {
    72. perror("realloc failed");
    73. exit(-1);
    74. }
    75. ps->a = tmp;
    76. ps->capacity *= 2;
    77. }
    78. }
    79. //尾插
    80. void SLPushBack(SL* ps, SLDatatype x)
    81. {
    82. SLCheckcapacity(ps);
    83. ps->a[ps->size] = x;
    84. ps->size++;
    85. }
    86. //尾删
    87. void SLPopBack(SL* ps)
    88. {
    89. assert(ps->size > 0);
    90. if (ps->size == 0)
    91. {
    92. return;
    93. }
    94. ps->size--;
    95. }
    96. //头插
    97. void SLPushFront(SL* ps, SLDatatype x)
    98. {
    99. SLCheckcapacity(ps);
    100. int end = ps->size;
    101. while (end > 0)
    102. {
    103. ps->a[end] = ps->a[end - 1];
    104. end--;
    105. }
    106. ps->a[0] = x;
    107. ps->size++;
    108. }
    109. //头删
    110. void SLPopFront(SL* ps)
    111. {
    112. assert(ps->size > 0);
    113. if (ps->size==0)
    114. {
    115. return;
    116. }
    117. int begin = 0;
    118. while (begin < ps->size)
    119. {
    120. ps->a[begin] = ps->a[begin+1];
    121. begin++;
    122. }
    123. ps->size--;
    124. }
    125. //在pos位置插入x
    126. void SLInsert(SL* ps, int pos, int x)
    127. {
    128. assert(pos >= 0 && pos <= ps->size);
    129. SLCheckcapacity(ps);
    130. int end = ps->size;
    131. while (end >=pos)
    132. {
    133. ps->a[end] = ps->a[end-1];
    134. end--;
    135. }
    136. ps->a[pos] = x;
    137. ps->size++;
    138. }
    139. //删除pos位置的值
    140. void SLErase(SL* ps, int pos)
    141. {
    142. assert(pos >= 0 && pos <= ps->size);
    143. SLCheckcapacity(ps);
    144. int begin = pos;
    145. while (begin < ps->size)
    146. {
    147. ps->a[begin] = ps->a[begin + 1];
    148. begin++;
    149. }
    150. ps->size--;
    151. }
    152. int SLFind(SL* ps, int x)
    153. {
    154. int i = 0;
    155. for (i = 0; i < ps->size; i++)
    156. {
    157. if (ps->a[i] == x)
    158. return i;
    159. }
    160. return -1;
    161. }
    162. void SLModify(SL* ps, SLDatatype pos, SLDatatype x)
    163. {
    164. assert(pos >= 0 && pos < ps->size);
    165. ps->a[pos] = x;
    166. }
    167. int main()
    168. {
    169. SL s1;
    170. //传值初始化
    171. //SLInit(s1);
    172. //传址初始化
    173. SLInit(&s1);
    174. //尾插
    175. SLPushBack(&s1, 1);
    176. SLPushBack(&s1, 2);
    177. SLPushBack(&s1, 3);
    178. SLPushBack(&s1, 4);
    179. SLPushBack(&s1, 5);
    180. SLPushBack(&s1, 6);
    181. SLPushBack(&s1, 7);
    182. //尾插测试
    183. printf("尾插:\n");
    184. SLprint(&s1);
    185. //尾删
    186. SLPopBack(&s1);
    187. //尾删测试
    188. printf("尾删:\n");
    189. SLprint(&s1);
    190. //头插
    191. SLPushFront(&s1,10);
    192. //头插测试
    193. printf("头插:\n");
    194. SLprint(&s1);
    195. //头删
    196. SLPopFront(&s1);
    197. //头删测试
    198. printf("头删:\n");
    199. SLprint(&s1);
    200. //在pos位置插入x
    201. SLInsert(&s1, 0, 100);
    202. //pos插入x测试
    203. printf("pos位置插入x\n");
    204. SLprint(&s1);
    205. //删除pos位置的值
    206. SLErase(&s1, 0);
    207. //测试
    208. printf("删除pos位置的值\n");
    209. SLprint(&s1);
    210. //
    211. SLModify(&s1, 2, 1);
    212. printf("修改某个位置上的值:\n");
    213. //
    214. SLprint(&s1);
    215. //清空
    216. SLDestr(&s1);
    217. return 0;
    218. }

  • 相关阅读:
    逆向分析练习六(实战CrackMe01)
    机器学习-保存模型并根据模型进行预测 python demo
    33 【History对象和Location对象】
    【STM32】存储器和位带映射(bit band mapping)
    Redis实践优化
    纯前端个人主页分享
    yolov8如何进行训练验证推理
    升级 Xcode 15模拟器 iOS 17.0 Simulator(21A328) 下载失败
    【iMessage苹果推日历推位置推送】软件安装 UIApplication 的 registerForRemoteNotifications
    【RabbitMQ】SpringBoot整合RabbitMQ实现延时队列
  • 原文地址:https://blog.csdn.net/qq_55119554/article/details/132744357