当前位置:   article > 正文

【C语言数据结构】1.顺序表_c语言定义顺序表结构体

c语言定义顺序表结构体

目录

一、顺序表的结构定义

二、顺序表的结构操作

1.初始化

2.插入操作

3.删除操作 

4.扩容操作 

5.释放操作

6.输出

三、示例


        编程环境为 ubuntu 18.04。 

        顺序表需要连续一片存储空间,存储任意类型的元素,这里以存储 int 类型数据为例。

一、顺序表的结构定义

        size 为容量,length 为当前已知数据表元素的个数

  1. typedef struct Vector{
  2. int *data; //该顺序表这片连续空间的首地址
  3. int size, length;
  4. } Vec;

二、顺序表的结构操作

1.初始化

  1. Vec *init(int n){ //该顺序表具有n个存储单元
  2. Vec *v = (Vec *)malloc(sizeof(Vec)); //在内存栈上开辟一个空间 malloc在内存的堆区,在函数外面也能访问
  3. v->data = (int *)malloc(sizeof(int) * n);
  4. v->size = n;
  5. v->length = 0;
  6. return v;
  7. }

2.插入操作

  1. int insert(Vec *v, int ind, int val) { //ind为插入元素的位置,val为插入元素的值
  2. if(v == NULL) return 0;
  3. if(ind < 0 || ind > v->length) return 0; //判断要插入的位置是否合法
  4. if(v->length == v->size) {
  5. if(!expand(v)){ //扩容失败
  6. printf(RED("fail to expand!\n"));
  7. }
  8. printf(GREEN("success to expand! the size = %d\n"),v->size);
  9. }
  10. for(int i = v->length; i > ind; i--){
  11. v->data[i] = v->data[i-1];
  12. }
  13. v->data[ind] = val;
  14. v->length += 1;
  15. return 1;
  16. }
  •   为什么需要判断插入的位置是否合法呢?这是因为顺序表是连续一片存储空间,所以内存是连续的。

        下图以 length = 5,size = 9 为例,我们只能在下标为 0 到 4 之间的数中插入数据。

  •  插入一个元素示意图

3.删除操作 

  1. int erase(Vec *v, int ind){ //把下标为ind的元素删除
  2. if(v == NULL) return 0;
  3. if(ind < 0 || ind >= v->length) return 0;
  4. for(int i = ind + 1; i < v->length; i++){
  5. v->data[i - 1] = v->data[i];
  6. }
  7. v->length -= 1;
  8. return 1;
  9. }
  • 判断需要删除元素的下标是否合法,与插入元素类似
  •  删除一个元素示意图

4.扩容操作 

  1. int expand(Vec *v){
  2. //顺序表的扩容
  3. //malloc 动态申请空间,空间不一定干净 calloc 动态申请空间,并且清空 realloc 重新申请空间
  4. int extr_size = v->size;
  5. int *p;
  6. while(extr_size) {
  7. p = (int *)realloc(v->data, sizeof(int) * (v->size + extr_size));
  8. if(p != NULL) break; //p不为空,说明扩容成功,这个时候直接跳出循环
  9. extr_size >>= 1; //否则就把额外扩容的空间除以2,降低要求
  10. }
  11. if(p == NULL) return 0; //判断跳出循环究竟是扩容成功还是扩容失败,如果扩容失败,那就是p为空地址,找不到符合条件的内存区域
  12. v->size += extr_size;
  13. v->data = p;
  14. return 1;
  15. }

         注意扩容这里写的比较巧妙,首先 int extr_size = v->size; 表示先将需要扩容的大小设置成原本的大小,然后就判断能不能找到那么大的空间。  p = (int *)realloc(v->data, sizeof(int) * (v->size + extr_size));  如果在系统中能找到这么大的容量,那么就返回找到的内存地址的首地址,然后就可以结束跳出循环;要是找不到的话那只能降低要求,把 extr_size 除以 2,看看能不能知道,如果实在找不到,extr_size 为 0,就会跳出循环。然后可以通过判断 p 是不是空指针来判断程序是找到能够扩容的空间退出的还是找不到退出的。

        要是对 malloc、calloc 和 realloc 不熟悉的,可以看我这篇博文:【C语言进阶剖析】37.C语言中的动态内存分配

5.释放操作

  1. void clear(Vec *v){ //释放空间
  2. if(v == NULL) return;
  3. free(v->data);
  4. free(v);
  5. return;
  6. }

        先释放数据,再释放整个顺序表。 

6.输出

  1. void output(Vec *v){
  2. if(v == NULL) return ;
  3. printf("[");
  4. for(int i = 0; i < v->length; i++){
  5. i && printf(", ");
  6. printf("%d", v->data[i]);
  7. }
  8. printf("]\n");
  9. return ;
  10. }

三、示例

  1. #include <stdio.h>
  2. #include<stdlib.h>
  3. #include<time.h>
  4. //#include<windows.h>
  5. #define COLOR(a, b) "\033[" #b "m" a "\033[0m"
  6. #define GREEN(a) COLOR(a, 32)
  7. #define RED(a) COLOR(a, 31)
  8. typedef struct Vector{
  9. int *data; //该顺序表这片连续空间的首地址
  10. int size, length;
  11. } Vec;
  12. Vec *init(int n){ //该顺序表具有n个存储单元
  13. Vec *v = (Vec *)malloc(sizeof(Vec)); //在内存栈上开辟一个空间 malloc在内存的堆区,在函数外面也能访问
  14. v->data = (int *)malloc(sizeof(int) * n);
  15. v->size = n;
  16. v->length = 0;
  17. return v;
  18. }
  19. int expand(Vec *v){
  20. //顺序表的扩容
  21. //malloc 动态申请空间,空间不一定干净 calloc 动态申请空间,并且清空 realloc 重新申请空间
  22. int extr_size = v->size;
  23. int *p;
  24. while(extr_size) {
  25. p = (int *)realloc(v->data, sizeof(int) * (v->size + extr_size));
  26. if(p != NULL) break; //p不为空,说明扩容成功,这个时候直接跳出循环
  27. extr_size >>= 1; //否则就把额外扩容的空间除以2,降低要求
  28. }
  29. if(p == NULL) return 0; //判断跳出循环究竟是扩容成功还是扩容失败,如果扩容失败,那就是p为空地址,找不到符合条件的内存区域
  30. v->size += extr_size;
  31. v->data = p;
  32. return 1;
  33. }
  34. int insert(Vec *v, int ind, int val) { //ind为插入元素的位置,val为插入元素的值
  35. if(v == NULL) return 0;
  36. if(ind < 0 || ind > v->length) return 0;
  37. if(v->length == v->size) {
  38. if(!expand(v)){
  39. printf(RED("fail to expand!\n"));
  40. }
  41. printf(GREEN("success to expand! the size = %d\n"),v->size);
  42. }
  43. for(int i = v->length; i > ind; i--){
  44. v->data[i] = v->data[i-1];
  45. }
  46. v->data[ind] = val;
  47. v->length += 1;
  48. return 1;
  49. }
  50. int erase(Vec *v, int ind){ //把下标为ind的元素删除
  51. if(v == NULL) return 0;
  52. if(ind < 0 || ind >= v->length) return 0;
  53. for(int i = ind + 1; i < v->length; i++){
  54. v->data[i - 1] = v->data[i];
  55. }
  56. v->length -= 1;
  57. return 1;
  58. }
  59. void output(Vec *v){
  60. if(v == NULL) return ;
  61. printf("[");
  62. for(int i = 0; i < v->length; i++){
  63. i && printf(", ");
  64. printf("%d", v->data[i]);
  65. }
  66. printf("]\n");
  67. return ;
  68. }
  69. void clear(Vec *v){ //释放空间
  70. if(v == NULL) return;
  71. free(v->data);
  72. free(v);
  73. return;
  74. }
  75. int main(){
  76. #define MAX_N 20
  77. Vec *v = init(1);
  78. srand(time(0)); //设置种子
  79. for (int i = 0; i < MAX_N; i++){
  80. int op = rand() % 4;
  81. int ind = rand() % (v->length + 3) - 1; //取值范围[-1, v->length + 1]
  82. int val = rand() % 100; //val为1到99之间的数
  83. switch(op){
  84. case 0:
  85. case 1:
  86. case 2: {
  87. printf("insert %d at %d to the Vector = %d\n", val, ind, insert(v, ind, val));
  88. }break;
  89. case 3:{
  90. printf("erase a item at %d = %d\n",ind,erase(v, ind));
  91. }break;
  92. }
  93. output(v);
  94. printf("\n");
  95. }
  96. #undef MAX_N
  97. clear(v);
  98. return 0;
  99. }

        输出结果如下:

  1. insert 82 at 0 to the Vector = 1
  2. [82]
  3. insert 38 at 2 to the Vector = 0
  4. [82]
  5. success to expand! the size = 2
  6. insert 7 at 1 to the Vector = 1
  7. [82, 7]
  8. success to expand! the size = 4
  9. insert 86 at 2 to the Vector = 1
  10. [82, 7, 86]
  11. erase a item at 4 = 0
  12. [82, 7, 86]
  13. erase a item at 4 = 0
  14. [82, 7, 86]
  15. insert 48 at 0 to the Vector = 1
  16. [48, 82, 7, 86]
  17. insert 65 at 5 to the Vector = 0
  18. [48, 82, 7, 86]
  19. success to expand! the size = 8
  20. insert 92 at 4 to the Vector = 1
  21. [48, 82, 7, 86, 92]
  22. erase a item at 2 = 1
  23. [48, 82, 86, 92]
  24. insert 81 at 2 to the Vector = 1
  25. [48, 82, 81, 86, 92]
  26. insert 9 at 0 to the Vector = 1
  27. [9, 48, 82, 81, 86, 92]
  28. insert 99 at 1 to the Vector = 1
  29. [9, 99, 48, 82, 81, 86, 92]
  30. insert 29 at 7 to the Vector = 1
  31. [9, 99, 48, 82, 81, 86, 92, 29]
  32. success to expand! the size = 16
  33. insert 38 at 0 to the Vector = 1
  34. [38, 9, 99, 48, 82, 81, 86, 92, 29]
  35. erase a item at 0 = 1
  36. [9, 99, 48, 82, 81, 86, 92, 29]
  37. erase a item at 8 = 0
  38. [9, 99, 48, 82, 81, 86, 92, 29]
  39. erase a item at 6 = 1
  40. [9, 99, 48, 82, 81, 86, 29]
  41. insert 57 at -1 to the Vector = 0
  42. [9, 99, 48, 82, 81, 86, 29]
  43. insert 32 at 4 to the Vector = 1
  44. [9, 99, 48, 82, 32, 81, 86, 29]
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/576426
推荐阅读
相关标签
  

闽ICP备14008679号