当前位置:   article > 正文

数据结构——顺序表

数据结构——顺序表

1.线性表

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

2.顺序表

2.1概念及结构

顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储。在数组上完成数据的增删查改。
顺序表一般可以分为:
1. 静态顺序表:使用定长数组存储元素。 

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

2.2 接口实现

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

  1. typedef int SLDataType;
  2. // 顺序表的动态存储
  3. typedef struct SeqList
  4. {
  5.  SLDataType* array;  // 指向动态开辟的数组
  6.  size_t size ;       // 有效数据个数
  7.  size_t capicity ;   // 容量空间的大小
  8. }SeqList;
  9. // 基本增删查改接口
  10. // 顺序表初始化
  11. void SeqListInit(SeqList* psl);
  12. // 检查空间,如果满了,进行增容
  13. void CheckCapacity(SeqList* psl);
  14. // 顺序表尾插
  15. void SeqListPushBack(SeqList* psl, SLDataType x);
  16. // 顺序表尾删
  17. void SeqListPopBack(SeqList* psl);
  18. // 顺序表头插
  19. void SeqListPushFront(SeqList* psl, SLDataType x);
  20. // 顺序表头删
  21. void SeqListPopFront(SeqList* psl);
  22. // 顺序表查找
  23. int SeqListFind(SeqList* psl, SLDataType x);
  24. // 顺序表在pos位置插入x
  25. void SeqListInsert(SeqList* psl, size_t pos, SLDataType x);
  26. // 顺序表删除pos位置的值
  27. void SeqListErase(SeqList* psl, size_t pos);
  28. // 顺序表销毁
  29. void SeqListDestory(SeqList* psl);
  30. // 顺序表打印
  31. void SeqListPrint(SeqList* psl);
  1. void SLInit(SL* psl) {
  2. assert(psl);
  3. psl->a = NULL;
  4. psl->capacity = 0;
  5. psl->size = 0;
  6. }
  7. void SLDestroy(SL* psl) {
  8. assert(psl);
  9. if (psl -> a != NULL) {
  10. free(psl);
  11. psl->a = NULL;
  12. psl->capacity = 0;
  13. psl->size = 0;
  14. }
  15. }
  16. void SLPrint(SL* psl) {
  17. assert(psl);
  18. for (int i = 0; i < psl->size; i++) {
  19. printf("%d ", psl->a[i]);
  20. }
  21. printf("\n");
  22. }
  23. void SLCheckCapacity(SL* psl) {
  24. assert(psl);
  25. if (psl->size == psl->capacity) {
  26. int newCapacity = psl->capacity == 0 ? 4 : psl->capacity * 2;
  27. SLDataType* tmp = (SLDataType*)realloc(psl->a, sizeof(SLDataType)*newCapacity);
  28. if (tmp == NULL) {
  29. perror("realloc fail");
  30. return;
  31. }
  32. psl->a = tmp;
  33. psl->capacity = newCapacity;
  34. }
  35. }
  36. void SLPushBack(SL* psl, SLDataType x) {
  37. assert(psl);
  38. SLCheckCapacity(psl);
  39. psl->a[psl->size] = x;
  40. psl->size++;
  41. }
  42. void SLPushFront(SL* psl, SLDataType x) {
  43. assert(psl);
  44. SLCheckCapacity(psl);
  45. int end = psl->size - 1;
  46. while (end >= 0) {
  47. psl->a[end+1] = psl->a[end];
  48. end--;
  49. }
  50. psl->a[0] = x;
  51. psl->size++;
  52. }
  53. void SLPopBack(SL* psl) {
  54. assert(psl);
  55. assert(psl->size > 0);
  56. psl->size--;
  57. }
  58. void SLPopFront(SL* psl) {
  59. assert(psl);
  60. assert(psl->size > 0);
  61. int begin = 0;
  62. while (begin < psl->size) {
  63. psl->a[begin - 1] = psl->a[begin];
  64. begin++;
  65. }
  66. psl->size--;
  67. }
  68. void SLFind(SL* psl, SLDataType x) {
  69. assert(psl);
  70. int begin = 0;
  71. while (begin < psl->size) {
  72. if (psl->a[begin] == x) {
  73. printf("ҵ±:%d\n", begin);
  74. return;
  75. }
  76. begin++;
  77. }
  78. printf("Ҳ\n");
  79. }
  80. void SLInsert(SL* psl, int pos, SLDataType x) {
  81. assert(psl);
  82. assert(pos >= 0 && pos <= psl->size);
  83. SLCheckCapacity(psl);
  84. int end = psl->size - 1;
  85. while (end>=pos) {
  86. psl->a[end+1] = psl->a[end];
  87. end--;
  88. }
  89. psl->a[pos] = x;
  90. psl->size++;
  91. }
  92. void SLErase(SL* psl, int pos) {
  93. assert(psl);
  94. assert(pos >= 0 && pos <= psl->size);
  95. int begin = pos;
  96. while (begin < psl->size) {
  97. psl->a[begin - 1] = psl->a[begin];
  98. begin++;
  99. }
  100. psl->size--;
  101. }
  1. #include<stdio.h>
  2. #include"SeqList.h"
  3. void TestSL1() {
  4. SL sl;
  5. SLInit(&sl);
  6. //SLCheckCapacity(&sl);
  7. SLPushBack(&sl, 1);
  8. SLPushBack(&sl, 2);
  9. SLPushBack(&sl, 3);
  10. SLPushBack(&sl, 4);
  11. SLPushBack(&sl, 5);
  12. //SLCheckCapacity(&sl);
  13. SLPrint(&sl);
  14. SLPushFront(&sl, 8);
  15. SLPushFront(&sl, 7);
  16. SLPushFront(&sl, 6);
  17. SLPrint(&sl);
  18. SLPopBack(&sl);
  19. SLPopBack(&sl);
  20. SLPopBack(&sl);
  21. SLPrint(&sl);
  22. SLPopFront(&sl);
  23. SLPopFront(&sl);
  24. SLPrint(&sl);
  25. SLFind(&sl, 1);
  26. SLInsert(&sl, 2, 10);
  27. SLInsert(&sl, 2, 11);
  28. SLInsert(&sl, 2, 12);
  29. SLPrint(&sl);
  30. SLErase(&sl, 3);
  31. SLPrint(&sl);
  32. //SLDestroy(&sl);
  33. }
  34. int main() {
  35. TestSL1();
  36. return 0;
  37. }

 

 

 

 

 

 

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

闽ICP备14008679号