当前位置:   article > 正文

数据结构初阶之顺序表(C语言)_数据结构顺序表常见错误

数据结构顺序表常见错误

目录

一. 顺序表分类

二. 接口实现


一. 顺序表分类

  1. 静态顺序表
  2. 动态顺序表

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

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

二. 接口实现

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

将要实现的功能:

基本的增删查改,包括:

初始化,检查空间,尾插,头插,尾删,头插,头删,查找,在指定位置插入,删除指定位置的值,销毁,打印

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

这是定义的结构体:

  1. //重定义类型,方便更改
  2. typedef int SLDataType
  3. //动态顺序表的定义,为了方便后续使用,重定义
  4. typedef struct SeqList
  5. {
  6. SLDataType* a;
  7. int sz;
  8. int capacity;
  9. }SL, SeqList;

注:以下实现都进行了assert断言,因为传的指针不允许为空,不然毫无意义

1. 初始化顺序表

因为没什么注意事项,直接放代码

  1. void SeqListInit(SeqList* psl)
  2. {
  3. assert(psl);//判空
  4. psl->a = NULL;
  5. psl->sz = 0;
  6. psl->capacity = 0;
  7. }

2. 顺序表尾部插入

值得注意的是要判断是否需要扩容

  1. void SeqListPushBack(SeqList* psl, SLDataType x)
  2. {
  3. assert(psl);//判空
  4. SeqListCheckcapacity(psl);//容量检查
  5. //无论是否有增容,都要尾部插入
  6. psl->a[psl->sz] = x;
  7. psl->sz++;
  8. }

3. 容量检查

需要注意,扩容时,如果初始容量是0,那就会出现问题,这种方法可以有效处理当初始容量设置初始容量为0时的情况

  1. void SeqListCheckcapacity(SeqList* psl)
  2. {
  3. assert(psl);//判空
  4. //增容
  5. if (psl->sz == psl->capacity)
  6. {
  7. size_t newcapacity = psl->capacity == 0 ? 4 : psl->capacity * 2;
  8. //为了防止初始化的值为零,不能直接乘以2,下面的扩容会失败
  9. SLDataType* temp = (SLDataType*)realloc(psl->a, sizeof(SLDataType) * newcapacity);
  10. if (temp == NULL)
  11. {
  12. printf("open failed\n");
  13. exit(-1);//终结程序,不再运行
  14. }
  15. else
  16. {
  17. psl->a = temp;
  18. psl->capacity = newcapacity;//将增容空间赋值给旧的容量
  19. }
  20. }
  21. }

4. 删除顺序表尾部元素

需要注意下标一直自减会导致越界,需要处理越界问题

  1. void SeqListPopBack(SeqList* psl)
  2. {
  3. assert(psl);//判空
  4. if (psl->sz > 0)//必须加这个条件,不然一直减减有可能越界
  5. {
  6. psl->sz--;//尾删直接sz--,因为空间是可回收的,无需自己覆盖
  7. }
  8. }

5. 销毁顺序表

即释放空间并置0

  1. void SeqListDestroy(SeqList* psl)
  2. {
  3. assert(psl);//判空
  4. //释放并置空
  5. free(psl->a);
  6. psl->a = NULL;
  7. //置0
  8. psl->sz = 0;
  9. psl->capacity = 0;
  10. }

6.打印顺序表

没什么注意事项

  1. void SeqListPrint(SeqList* psl)
  2. {
  3. assert(psl);//判空
  4. int i = 0;
  5. for (i = 0; i < psl->sz; i++)
  6. {
  7. printf("%d ", psl->a[i]);
  8. }
  9. printf("\n");
  10. }

7. 顺序表头部插入

没什么特别注意的事项

  1. void SeqListPushFront(SeqList* psl, SLDataType x)
  2. {
  3. assert(psl);//判空
  4. SeqListCheckcapacity(psl);//容量检查
  5. int end = psl->sz - 1;
  6. while (end >= 0)//头部插入应该把数据往后赋值,0也在内
  7. {
  8. psl->a[end+1] = psl->a[end];
  9. end--;
  10. }
  11. psl->a[0] = x;
  12. psl->sz++;
  13. }

8. 顺序表头部删除

需注意,下标不能一直自减下去,不然会导致越界

  1. void SeqListPopFront(SeqList* psl)
  2. {
  3. assert(psl);//判空
  4. int begin = 1;
  5. if (psl->sz > 0)//必须加这个条件,不然一直减减有可能越界
  6. {
  7. while (begin < psl->sz)
  8. {
  9. psl->a[begin - 1] = psl->a[begin];
  10. begin++;
  11. }
  12. psl->sz--;
  13. }
  14. }

9. 任意位置插入

1. 由于数组下标一律大于0,所以,根据C++里的实现,我们也应该设置无符号整型,而不是有符号整型

2. 要注意pos是否越界

3. 进行插入时,尤其要注意无符号整型的越界问题,可能导致死循环,或者有符号整型以及无符号整型一起使用导致了整形提升问题而出现的bug问题

  1. void SeqListInsert(SeqList* psl, size_t pos, SLDataType x)
  2. {
  3. assert(psl);//检查psl
  4. //检查是否越界
  5. if (pos > psl->sz)
  6. {
  7. printf("越界\n");
  8. return;
  9. }
  10. //检查是否需要扩容
  11. SeqListCheckcapacity(psl);
  12. //下标使用无符号整形,end指向最后应该元素后面
  13. size_t end = psl->sz;
  14. //进行插入,这里有个注意事项,当除这种以外的情况
  15. //如果无符号和有符号整形一起出现,要注意无符号整形和有符号整形在进行计算时会整形提升
  16. //如果使用的全是无符号整形,那就要注意end别越界而导致死循环
  17. while (end > pos)
  18. {
  19. psl->a[end] = psl->a[end - 1];
  20. --end;
  21. }
  22. psl->a[pos] = x;
  23. psl->sz++;
  24. }

10. 删除指定位置的数据

注意别越界

  1. void SeqListErase(SeqList* psl, size_t pos)
  2. {
  3. assert(psl);//判空
  4. //判断越界
  5. if (pos >= psl->sz)
  6. {
  7. printf("越界\n");
  8. return;
  9. }
  10. size_t begin = pos + 1;
  11. //开始移动
  12. while (begin < psl->sz)
  13. {
  14. psl->a[begin - 1] = psl->a[begin];
  15. ++begin;
  16. }
  17. --psl->sz;
  18. }

11. 查找指定的数据

没什么注意事项

  1. void SeqListFind(SeqList* psl, SLDataType x)
  2. {
  3. assert(psl);//判空
  4. //遍历寻找,返回下标
  5. for (int i = 0; i < psl->sz; i++)
  6. {
  7. if (psl->a[i] == x)
  8. {
  9. return i;
  10. }
  11. }
  12. //找不到返回-1错误码
  13. return -1;
  14. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/438956
推荐阅读
相关标签
  

闽ICP备14008679号