当前位置:   article > 正文

数据结构~~顺序表

数据结构~~顺序表

目录

一、顺序表的概念

二、顺序表的接口实现 

1.顺序表初始化

2.顺序表销毁

3.检查空间并扩容

4.顺序表尾插、顺序表头插

5.顺序表尾删、顺序表头删

6.顺序表查找

7.顺序表在pos位置插入x、删除pos位置的值

三、完整代码

四、总结

一、顺序表的概念

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

顺序表一般可以分为:

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

  1. #define N 10
  2. typedef int SLDataType;
  3. typedef struct SeqList
  4. {
  5. SLDateType a[N];//定长数组
  6. size_t size; //有效数据的个数
  7. }SL;

这个就是静态的顺序表的结构体,但是静态的是存在缺陷的,比如我们如果要存11个数据,这样就存不下来,如果我们这个N给的太大,就浪费内存空间,所以我们用动态开辟的方法来实现才是最好的。

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

  1. typedef int SLDataType;
  2. typedef struct SeqList
  3. {
  4. SLDateType* a; //指向动态开辟的数组
  5. int size; //有效数据的个数
  6. int capicity //容量空间的大小
  7. }SL;

二、顺序表的接口实现 

SeqList.h:内容包括头文件的包含,结构体定义和接口函数的声明。顺序表的接口包括顺序表的初始化、增 (头插、尾插、指定下标)删(头删、尾删、指定下标)查改。

  1. //SeqLish.h
  2. #pragma once
  3. #include<stdio.h>
  4. #include<stdlib.h>
  5. #include<string.h>
  6. #include<assert.h>
  7. typedef int SLDatatype;
  8. typedef struct SeqLish
  9. {
  10. SLDatatype* a;
  11. int size;
  12. int capacity;
  13. }SL;
  14. void SLInit(SL* ps1);//初始化
  15. void SLDesttoy(SL* ps1);//结束 释放顺序表
  16. void SLPrint(SL* ps1);//打印
  17. void SLCheckCapacity(SL* ps1);//扩容
  18. void SLPushBack(SL* ps1,SLDatatype x); //尾插
  19. void SLPushFront(SL* ps1,SLDatatype x);//头插
  20. void SLPopBack(SL* ps1); //尾删
  21. void SLPopFront(SL* ps1);//头删
  22. void SLInsert(SL* ps1, int pos,SLDatatype x);//指定增加
  23. void SLErase(SL* ps1, int pos);//指定删除
  24. //找到返回下标,没有找到返回-1
  25. int SLFind(SL* ps1, SLDatatype x);//查
  26. void SLModify(SL* ps1, int pos, SLDatatype x);//改

 SeqList.c:主要内容为函数接口的实现。

1.顺序表初始化

一般先初始化四个元素

  1. void SLInit(SL* ps1)
  2. {
  3. ps1->a = (SLDatatype*)malloc(sizeof(SLDatatype*) * 4);
  4. if (ps1->a == NULL)
  5. {
  6. perror("malloc err");
  7. return;
  8. }
  9. ps1->capacity = 4;
  10. ps1->size = 0;
  11. }
2.顺序表销毁
  1. void SLDesttoy(SL* ps1)
  2. {
  3. free(ps1->a);
  4. ps1->a = NULL;
  5. ps1->capacity = 0;
  6. ps1->size = 0;
  7. }
3.检查空间并扩容
  1. void SLCheckCapacity(SL* ps1)
  2. {
  3. if (ps1->size == ps1->capacity)
  4. {
  5. SLDatatype* tmp = (SLDatatype*)realloc(ps1->a, sizeof(SLDatatype) * ps1->capacity * 2);
  6. if (tmp == NULL)
  7. {
  8. perror("realloc err");
  9. return;
  10. }
  11. ps1->a = tmp;
  12. ps1->capacity *= 2;
  13. }
  14. }
4.顺序表尾插、顺序表头插

尾插:

  1. void SLPushBack(SL* ps1, SLDatatype x)
  2. {
  3. SLCheckCapacity(ps1);
  4. ps1->a[ps1->size] = x;
  5. ps1->size++;
  6. }

头插:

  1. void SLPushFront(SL* ps1, SLDatatype x)
  2. {
  3. SLCheckCapacity(ps1);
  4. int end = ps1->size - 1;
  5. while (end >= 0)
  6. {
  7. ps1->a[end + 1] = ps1->a[end];
  8. end--;
  9. }
  10. ps1->a[0] = x;
  11. ps1->size++;
  12. }
5.顺序表尾删、顺序表头删

尾删:

size直接--就是尾插

  1. void SLPopBack(SL* ps1)
  2. {
  3. assert(ps1->size > 0);
  4. ps1->size--;
  5. }

头删:

后往前覆盖数据

  1. void SLPopFront(SL* ps1)
  2. {
  3. assert(ps1->size > 0);
  4. int strat = 0;
  5. while (strat < ps1->size - 1)
  6. {
  7. ps1->a[strat] = ps1->a[strat + 1];
  8. strat++;
  9. }
  10. ps1->size--;
  11. }
6.顺序表查找
  1. int SLFind(SL* ps1, SLDatatype x)
  2. {
  3. for (int i = 0; i < ps1->size; i++)
  4. {
  5. if (ps1->a[i] == ps1->a[x])
  6. {
  7. return i;
  8. }
  9. }
  10. return -1;
  11. }
7.顺序表在pos位置插入x、删除pos位置的值

pos插入x

  1. void SLInsert(SL* ps1, int pos, SLDatatype x)
  2. {
  3. assert(0 <= pos && pos <= ps1->size);
  4. SLCheckCapacity(ps1);
  5. int end = ps1->size - 1;
  6. while (end >= pos)
  7. {
  8. ps1->a[end + 1] = ps1->a[end];
  9. end--;
  10. }
  11. ps1->a[pos] = x;
  12. ps1->size++;
  13. }

删除pos

  1. void SLErase(SL* ps1, int pos)
  2. {
  3. assert(0 <= pos && pos < ps1->size);
  4. int strat = pos + 1;
  5. while (strat < ps1->size)
  6. {
  7. ps1->a[strat - 1] = ps1->a[strat];
  8. strat++;
  9. }
  10. ps1->size--;
  11. }

三、完整代码

SeqLish.h:

  1. #pragma once
  2. #include<stdio.h>
  3. #include<stdlib.h>
  4. #include<string.h>
  5. #include<assert.h>
  6. typedef int SLDatatype;
  7. typedef struct SeqLish
  8. {
  9. SLDatatype* a;
  10. int size;
  11. int capacity;
  12. }SL;
  13. void SLInit(SL* ps1);//初始化
  14. void SLDesttoy(SL* ps1);//结束 释放顺序表
  15. void SLPrint(SL* ps1);//打印
  16. void SLCheckCapacity(SL* ps1);//扩容
  17. void SLPushBack(SL* ps1,SLDatatype x); //尾插
  18. void SLPushFront(SL* ps1,SLDatatype x);//头插
  19. void SLPopBack(SL* ps1); //尾删
  20. void SLPopFront(SL* ps1);//头删
  21. void SLInsert(SL* ps1, int pos,SLDatatype x);//指定增加
  22. void SLErase(SL* ps1, int pos);//指定删除
  23. //找到返回下标,没有找到返回-1
  24. int SLFind(SL* ps1, SLDatatype x);//查
  25. void SLModify(SL* ps1, int pos, SLDatatype x);//改

SeqLish.c: 

  1. #include"SeqList.h"
  2. void SLInit(SL* ps1)
  3. {
  4. ps1->a = (SLDatatype*)malloc(sizeof(SLDatatype*) * 4);
  5. if (ps1->a == NULL)
  6. {
  7. perror("malloc err");
  8. return;
  9. }
  10. ps1->capacity = 4;
  11. ps1->size = 0;
  12. }
  13. void SLDesttoy(SL* ps1)
  14. {
  15. free(ps1->a);
  16. ps1->a = NULL;
  17. ps1->capacity = 0;
  18. ps1->size = 0;
  19. }
  20. void SLPrint(SL* ps1)
  21. {
  22. for (int i = 0; i < ps1->size;i++)
  23. {
  24. printf("%d ",ps1->a[i]);
  25. }
  26. printf("\n");
  27. }
  28. void SLCheckCapacity(SL* ps1)
  29. {
  30. if (ps1->size == ps1->capacity)
  31. {
  32. SLDatatype* tmp = (SLDatatype*)realloc(ps1->a, sizeof(SLDatatype) * ps1->capacity * 2);
  33. if (tmp == NULL)
  34. {
  35. perror("realloc err");
  36. return;
  37. }
  38. ps1->a = tmp;
  39. ps1->capacity *= 2;
  40. }
  41. }
  42. void SLPushBack(SL* ps1, SLDatatype x)
  43. {
  44. SLCheckCapacity(ps1);
  45. ps1->a[ps1->size] = x;
  46. ps1->size++;
  47. }
  48. void SLPushFront(SL* ps1, SLDatatype x)
  49. {
  50. SLCheckCapacity(ps1);
  51. int end = ps1->size - 1;
  52. while (end >= 0)
  53. {
  54. ps1->a[end + 1] = ps1->a[end];
  55. end--;
  56. }
  57. ps1->a[0] = x;
  58. ps1->size++;
  59. }
  60. void SLPopBack(SL* ps1)
  61. {
  62. assert(ps1->size > 0);
  63. ps1->size--;
  64. }
  65. void SLPopFront(SL* ps1)
  66. {
  67. assert(ps1->size > 0);
  68. int strat = 0;
  69. while (strat < ps1->size - 1)
  70. {
  71. ps1->a[strat] = ps1->a[strat + 1];
  72. strat++;
  73. }
  74. ps1->size--;
  75. }
  76. void SLInsert(SL* ps1, int pos, SLDatatype x)
  77. {
  78. assert(0 <= pos && pos <= ps1->size);
  79. SLCheckCapacity(ps1);
  80. int end = ps1->size - 1;
  81. while (end >= pos)
  82. {
  83. ps1->a[end + 1] = ps1->a[end];
  84. end--;
  85. }
  86. ps1->a[pos] = x;
  87. ps1->size++;
  88. }
  89. void SLErase(SL* ps1, int pos)
  90. {
  91. assert(0 <= pos && pos < ps1->size);
  92. int strat = pos + 1;
  93. while (strat < ps1->size)
  94. {
  95. ps1->a[strat - 1] = ps1->a[strat];
  96. strat++;
  97. }
  98. ps1->size--;
  99. }
  100. int SLFind(SL* ps1, SLDatatype x)
  101. {
  102. for (int i = 0; i < ps1->size; i++)
  103. {
  104. if (ps1->a[i] == ps1->a[x])
  105. {
  106. return i;
  107. }
  108. }
  109. return -1;
  110. }
  111. void SLModify(SL* ps1, int pos, SLDatatype x)
  112. {
  113. assert(0 <= pos && pos < ps1->size);
  114. ps1->a[pos] = x;
  115. }

四、总结

定义:顺序表是用一组连续的存储单元依次存储数据元素的线性结构。

特点:

1. 逻辑顺序与物理顺序一致:元素顺序存储,相邻元素物理位置相邻。

2. 可以快速访问任意元素:通过索引直接访问元素。

优点:

1. 实现简单。

2. 随机访问方便。

缺点:

1. 插入、删除操作可能需要移动大量元素,效率较低。

2. 需要预先确定固定的存储空间,可能造成空间浪费或不足。

基本操作:包括初始化、插入、删除、查找、遍历等。

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

闽ICP备14008679号