当前位置:   article > 正文

C语言手撕顺序表

C语言手撕顺序表

目录

一、概念

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

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

二、接口实现

1、对顺序表的初始化

 2、对数据的销毁

3、对数据的打印

4、检查是否需要扩容

5、尾插

6、头插

7、尾删

8、头删

9、在pos位置插入x

10、在pos位置处删除x

心得:


一、概念

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

顺序表一般分为

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

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

 我们一般使用动态顺序表,因为静态顺序表的数组大小固定的,而动态可以根据我们需求的不同去在线扩容,所以接下来的文章围绕如何实现动态顺序表来讲解。

二、接口实现

对数据结构我们一般采用增删查改去实现。

  1. #pragma once
  2. #include <stdio.h>
  3. #include <assert.h>
  4. #include <stdlib.h>
  5. #include<string.h>
  6. typedef int SLDateType;
  7. typedef struct SeqList
  8. {
  9. SLDateType* a;
  10. int size;//存储有效数据的大小
  11. int capacity;//空间大小
  12. }SeqList;
  13. // 对数据的管理:增删查改
  14. void SeqListInit(SeqList* ps);
  15. void SeqListDestroy(SeqList* ps);
  16. void SeqListPrint(SeqList* ps);
  17. void SeqListPushBack(SeqList* ps, SLDateType x);//尾插
  18. void SeqListPushFront(SeqList* ps, SLDateType x);//头插
  19. void SeqListPopFront(SeqList* ps);//头删
  20. void SeqListPopBack(SeqList* ps);//尾删
  21. void SeqListCheckCapacity(SeqList* ps);//检查是否需要扩容
  22. // 顺序表查找
  23. int SeqListFind(SeqList* ps, SLDateType x);
  24. // 顺序表在pos位置插入x
  25. void SeqListInsert(SeqList* ps, int pos, SLDateType x);
  26. // 顺序表删除pos位置的值
  27. void SeqListErase(SeqList* ps, int pos);
  28. //修改特定位置的值
  29. void SeqListModify(SeqList* ps, int pos,int value);

1、对顺序表的初始化

  1. void SeqListInit(SeqList* ps)
  2. {
  3. ps->a = (SLDateType*)malloc(sizeof(SLDateType) * 4);
  4. if (ps->a == NULL)//需要检查动态开辟内存是否开辟成功
  5. {
  6. perror(malloc);
  7. exit(-1);//直接程序退出,因为空间都开辟失败,后面没法写
  8. }
  9. ps->size = 0;
  10. ps->capacity = 4;
  11. }

 2、对数据的销毁

因为我们是动态开辟的内存,最后肯定是需要free释放。

  1. void SeqListDestroy(SeqList* ps)
  2. {
  3. free(ps->a);
  4. ps->a = NULL;
  5. ps->size = 0;
  6. ps->capacity = 0;
  7. }

3、对数据的打印

因为我们时刻要检查每一部分代码的正确性,需要数据检验,所以需要专门一个打印函数

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

4、检查是否需要扩容

因为动态内存,每当我们插入新的数据时,总需要将存储有效数据的大小增加,当我们开辟的空间不够时,就需要扩容,利用realloc函数的性质。

  1. void SeqListCheckCapacity(SeqList* ps)
  2. {
  3. if (ps->size == ps->capacity)
  4. {
  5. SLDateType* tmp = (SLDateType*)realloc(ps->a, ps->capacity * 2 * sizeof(SLDateType));
  6. //注意动态内存开辟的单位都是字节
  7. if (tmp == NULL)
  8. {
  9. perror(realloc);
  10. exit(-1);
  11. }
  12. ps->a = tmp;
  13. ps->capacity *= 2;
  14. }
  15. }

5、尾插

  1. void SeqListPushBack(SeqList* ps, SLDateType x)
  2. {
  3. //先考虑空间大小够不够,需不需要扩容
  4. SeqListCheckCapacity(ps);
  5. ps->a[ps->size] = x;
  6. ps->size++;
  7. }

6、头插

头插还需要用memmove函数去挪动数据

  1. void SeqListPushFront(SeqList* ps, SLDateType x)
  2. {
  3. //也需要考虑扩容的问题
  4. SeqListCheckCapacity(ps);
  5. memmove(ps->a + 1, ps->a, ps->size*sizeof(SLDateType));
  6. ps->size++;
  7. ps->a[0] = x;
  8. }

7、尾删

我们需要检查size是否已经小于0,防止数组的越界,一般用assert去暴力的检查

  1. void SeqListPopBack(SeqList* ps)
  2. {
  3. assert(ps->size > 0);//暴力的检查
  4. /*if (ps->size == 0)
  5. return;*/
  6. //温柔的检查
  7. ps->size--;
  8. }

8、头删

  1. void SeqListPopFront(SeqList* ps)
  2. {
  3. assert(ps->size > 0);
  4. memmove(ps->a, ps->a + 1, ps->size* sizeof(SLDateType));
  5. ps->size--;
  6. }

9、在pos位置插入x

  1. void SeqListInsert(SeqList* ps, int pos, SLDateType x)
  2. {
  3. SeqListCheckCapacity(ps);
  4. assert(pos >= 0 && pos < ps->size);
  5. memmove(ps->a+pos + 1, ps->a+pos, sizeof(SLDateType)*(ps->size-pos));
  6. ps->a[pos] = x;
  7. ps->size++;
  8. }

10、在pos位置处删除x

  1. void SeqListErase(SeqList* ps, int pos)
  2. {
  3. assert(ps->size > 0);
  4. memmove(ps->a + pos, ps->a + pos + 1,sizeof(SLDateType)*(ps->size-pos-1));
  5. ps->size--;
  6. }

三、顺序表和单链表区别

 

心得:

顺序表开启了数据结构的的序章,顺序表算是很简单的数据结构了,从此我们需要敲一部分代码,编译一次,不能一股脑的输出,结果编译发现好多个bug,需要写一部分,编译一部分,这样才更加的有持续性。

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

闽ICP备14008679号