当前位置:   article > 正文

顺序表的代码实现_顺序表代码

顺序表代码

文章目录


一、顺序表简介

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

  1. #define N 100
  2. typedef int ElemType;
  3. typedef struct SeqList{
  4. ElemType data[N];
  5. int size;
  6. int capacity;
  7. }SL;

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

  1. typedef int ElemType;
  2. typedef struct SeqList{
  3. ElemType *data;
  4. int size;
  5. int capacity;
  6. }SL;

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

2.代码实现

.h文件

  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<stdbool.h>
  4. typedef int ElemType;
  5. typedef struct SeqList{
  6. ElemType *data;
  7. int size;
  8. int capacity;
  9. }SL;
  10. void SLInit(SL* p); //顺序表初始化
  11. void SLPushBack(SL *p, ElemType x); //尾插
  12. void SLPushFront(SL *p, ElemType x); //头插
  13. void SLPopBack(SL *p); //尾删
  14. void SLPopFront(SL *p); //头删
  15. int SLFind(SL *p,ElemType x); //查找并返回下标
  16. void SLInsert(SL *p, int pos, ElemType x); //在指定位置插入
  17. void SLErase(SL *p, int pos); //删除pos位置数据
  18. void SLPrintf(SL *p); //打印
  19. int SLSize(SL *p); //返回元素个数
  20. bool SLEmpty(SL *p); //判空
  21. void SLDestroy(SL *p); //销毁

各个函数实现.c文件

  1. #include"SeqList.h"
  2. void SLInit(SL* p){ //顺序表初始化
  3. p->data = (ElemType *)malloc(sizeof(ElemType)* 10);
  4. if (p->data == NULL){
  5. printf("malloc fail\n");
  6. exit(-1);
  7. }
  8. p->size = 0;
  9. p->capacity = 10;
  10. }
  11. void SLCheckCapacity(SL *p){ //判断是否满了
  12. if (p->size == p->capacity){
  13. ElemType *new = realloc(p->data, sizeof(ElemType)*(p->capacity + 5));
  14. if (new == NULL){
  15. printf("realloc fail");
  16. exit(-1);
  17. }
  18. p->data = new;
  19. p->capacity += 5;
  20. }
  21. }
  22. void SLPushBack(SL *p, ElemType x){ //尾插
  23. SLCheckCapacity(p);
  24. p->data[p->size] = x;
  25. p->size++;
  26. }
  27. void SLPushFront(SL *p, ElemType x){ //头插
  28. SLCheckCapacity(p);
  29. for (int i = p->size; i > 0; i--){ //数据后移
  30. p->data[i] = p->data[i - 1];
  31. }
  32. p->data[0] = x;
  33. p->size++;
  34. }
  35. void SLPopBack(SL *p){ //尾删
  36. if (p->size == 0){
  37. printf("该表暂无内容,无法删除\n");
  38. return;
  39. }
  40. p->size--;
  41. }
  42. void SLPopFront(SL *p){ //头删
  43. if (p->size == 0){
  44. printf("该表暂无内容,无法删除\n");
  45. return;
  46. }
  47. for (int i = 0; i < p->size-1; i++){ //数据前移
  48. p->data[i] = p->data[i + 1];
  49. }
  50. p->size--;
  51. }
  52. int SLFind(SL *p,ElemType x){ //查找并返回下标
  53. int i;
  54. for ( i = 0; i < p->size; i++){
  55. if (x == p->data[i]){
  56. return i;
  57. }
  58. }
  59. printf("没找到该元素\n");
  60. }
  61. void SLInsert(SL *p, int pos, ElemType x){ //在指定位置插入
  62. SLCheckCapacity(p); //先判断是否满了
  63. if (pos<0 || pos>p->size+1){ //判断pos的值是否合法
  64. printf("请在合理的范围插入\n");
  65. return;
  66. }
  67. for (int i =p->size; i >pos-1; i--){ //数据后移
  68. p->data[i] = p->data[i-1];
  69. }
  70. p->data[pos-1] = x;
  71. p->size++;
  72. }
  73. void SLErase(SL *p, int pos){ //删除pos位置数据
  74. if (p->size == 0){
  75. printf("该表暂无内容,无法删除\n");
  76. return;
  77. }
  78. if (pos<0 || pos>p->size){ //判断pos的值是否合法
  79. printf("请在合理的范围插入\n");
  80. return;
  81. }
  82. for (int i =pos-1; i<p->size-1; i++){ //数据前移
  83. p->data[i] = p->data[i+1];
  84. }
  85. p->size--;
  86. }
  87. int SLSize(SL *p){ //返回表中元素个数
  88. return p->size;
  89. }
  90. bool SLEmpty(SL *p){ //判空
  91. return p->size == 0;
  92. }
  93. void SLDestroy(SL *p){ //销毁
  94. free(p->data);
  95. p->data = NULL;
  96. p->size = p->capacity = 0;
  97. }
  98. void SLPrintf(SL *p){ //打印
  99. for (int i = 0; i < p->size; i++){
  100. printf("%d ", p->data[i]);
  101. }
  102. printf("\n");
  103. }

总结

以上就是今天要讲的内容,本文简单介绍了单链表的代码实现

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

闽ICP备14008679号