当前位置:   article > 正文

数据结构--顺序表(C语言版)

数据结构--顺序表(C语言版)

(一).顺序表的概念及结构

首先,我们来了解一下什么是数据结构呢?

数据结构是顾明思义就是由数据+结构。

常⻅的数值1、2、3、4.....、教务系统⾥保存的⽤⼾信息(姓名、性别、年龄、学历等 等)、⽹⻚⾥⾁眼可以看到的信息(⽂字、图⽚、视频等等),这些就是数据

那结构是什么呢?当海量的数据没有按照顺序排列当我们查找起来就十分麻烦,例如:

上面这一组图片就能很好的说明结构的重要性当我们在左边圈里去找某一只小羊可想而知找到要花费多少时间,而当我们将每只小羊按照顺序排好序之后, 比如我们要找编号为十的这只小羊,我们就可以通过编号直接找到,这样便省了大量的时间。

故结构就是:当我们想要使⽤⼤量使⽤同⼀类型的数据时,通过⼿动定义⼤量的独⽴的变量对于程序来说,可读性 ⾮常差,我们可以借助数组这样的数据结构将⼤量的数据组织在⼀起,结构也可以理解为组织数据的⽅式。

数据结构:数据结构是计算机存储,组织数据的方式。

 接下来我们来了解一下顺序表的概念是什么呢?

顺序表就是一群数据按照有顺序的方式进行排列,这样便于查找。

顺序表其实就是线性表的其中一种。

首先,我们要来了解线性表的概念,

线性表(linear list)是n个具有相同特性的数据元素的有限序列。 线性表是⼀种在实际中⼴泛使 ⽤的数据结构,常⻅的线性表:顺序表、链表、栈、队列、字符串...。

线性表在逻辑上是线性结构,也就说是连续的⼀条直线。但是在物理结构上并不⼀定是连续的, 线性表在物理上存储时,通常以数组和链式结构的形式存储。

(二).顺序表的分类

顺序表分为静态顺序表动态顺序表两种:

静态顺序表:

这里就是一个静态顺序表,它的结构体数组大小是确定的,而这样就会导致一个缺点 ,空间给少了就不够用,空间给多了就会造成空间浪费。而我们的动态顺序表就能很好的解决这个问题。

动态顺序表:

这里就是动态顺序表,它相比于静态顺序表就是可动态的申请空间,按需申请空间这样就不会造成空间浪费,也不会出现空间不足的现象。

(三).动态顺序表的实现

上面我们了解了顺序表的概念和顺序表的分类,接下来进入代码阶段实现动态顺序表。

3.1创建结构体 

  1. typedef int SLDatatype;
  2. typedef struct SqList {
  3. SLDatatype* arr;
  4. int size;
  5. int capecity;
  6. }SL;

3.2初始化顺序表

  1. //初始化顺序表
  2. void SLInit(SL* ps)
  3. {
  4. ps->arr = NULL;
  5. ps->capecity = ps->size = 0;
  6. }

3.3销毁顺序表

  1. //销毁顺序表
  2. void SLDestroy(SL* ps)
  3. {
  4. if (ps->arr != NULL)
  5. {
  6. free(ps->arr);
  7. }
  8. ps->arr = NULL;
  9. ps->capecity = ps->size = 0;
  10. }

3.4打印顺序表 

  1. //打印代码
  2. void SLPrint(SL ps)
  3. {
  4. for (int i = 0; i < ps.size; i++)
  5. {
  6. printf("%d ", ps.arr[i]);
  7. }
  8. printf("\n");
  9. }

3.5头插尾插

尾插:

  1. //尾部插入
  2. void SLPushBack(SL* ps, SLDataType x)
  3. {
  4. assert(ps);
  5. //插入数据之前首先要判断空间够不够
  6. if (ps->size == ps->capecity)//如果当前空间已经满了的话就用relloc增容
  7. {
  8. //使用三目表达式,为使现有空间成倍的增加
  9. int newcapecity = ps->capecity == 0 ? 4 : 2 * ps->capecity;
  10. SLDataType* tmp = (SLDataType*)relloc(ps->arr, newcapecity * sizeof(SLDataType));
  11. if (tmp == NULL)
  12. {
  13. perror("relloc fail!");
  14. exit(1);
  15. }
  16. ps->arr = tmp;
  17. ps->capecity = newcapecity;
  18. }
  19. ps->arr[ps->size] = x;//在顺序表中尾插一个数据;
  20. ps->size++;
  21. }

 头插:

  1. //头插
  2. void SLPushFront(SL* ps, SLDataType x)
  3. {
  4. assert(ps);
  5. //插入数据之前首先要判断空间够不够
  6. if (ps->size == ps->capecity)//如果当前空间已经满了的话就用relloc增容
  7. {
  8. //使用三目表达式,为使现有空间成倍的增加
  9. int newcapecity = ps->capecity == 0 ? 4 : 2 * ps->capecity;
  10. SLDataType* tmp = (SLDataType*)relloc(ps->arr, newcapecity * sizeof(SLDataType));
  11. if (tmp == NULL)
  12. {
  13. perror("relloc fail!");
  14. exit(1);
  15. }
  16. ps->arr = tmp;
  17. ps->capecity = newcapecity;
  18. }
  19. for (int i = ps->size; i > 0; i--)
  20. {
  21. ps->arr[i] = ps->arr[i - 1];
  22. }
  23. ps->arr[0] = x;
  24. ps->size++;
  25. }

3.6头删尾删

尾删:

  1. // 尾部删除
  2. void SLPopBack(SL* ps)
  3. {
  4. assert(ps);
  5. assert(ps->size);
  6. ps->arr[ps->size - 1] = -1;
  7. --ps->size;
  8. }

头删:

  1. //头部删除
  2. void SLPopFront(SL* ps)
  3. {
  4. assert(ps);
  5. assert(ps->size);
  6. for (int i = 0; i < ps->size; i++)
  7. {
  8. ps->arr[i] = ps->arr[i + 1];
  9. }
  10. --ps->size;
  11. }

 

3.7在任意位置插入

  1. void SLInsert(SL* ps, int pos, SLDataType x)
  2. {
  3. assert(ps);
  4. assert(pos >= 0 && pos < ps->size);//断言插入位置是否合理
  5. //插入数据之前首先要判断空间够不够
  6. if (ps->size == ps->capecity)//如果当前空间已经满了的话就用relloc增容
  7. {
  8. //使用三目表达式,为使现有空间成倍的增加
  9. int newcapecity = ps->capecity == 0 ? 4 : 2 * ps->capecity;
  10. SLDataType* tmp = (SLDataType*)relloc(ps->arr, newcapecity * sizeof(SLDataType));
  11. if (tmp == NULL)
  12. {
  13. perror("relloc fail!");
  14. exit(1);
  15. }
  16. ps->arr = tmp;
  17. ps->capecity = newcapecity;
  18. }
  19. for (int i = ps->size; i > pos; i--)
  20. {
  21. ps->arr[i] = ps->arr[i - 1];
  22. }
  23. ps->arr[pos] = x;
  24. ps->size++;
  25. }

3.8在任意位置删除

  1. //在任意位置删除
  2. void SLErase(SL* ps, int pos)
  3. {
  4. assert(pos);
  5. assert(pos >= 0 && pos < ps->size);
  6. for (int i = pos; i < ps->size; i++)
  7. {
  8. ps->arr[i] = ps->arr[i+1];
  9. }
  10. ps->size--;
  11. }

3.9查找数据

  1. //查找数据
  2. int SLFind(SL* ps, SLDataType x)
  3. {
  4. assert(ps);
  5. for (int i = 0; i < ps->size; i++)
  6. {
  7. if (ps->arr[i] == x)
  8. {
  9. return i;
  10. }
  11. }
  12. return -1;
  13. }

汇总

SqList.h:

  1. #pragma once
  2. //SeqList.h进行顺序表结构的声明
  3. #include<stdio.h>
  4. #include<stdlib.h>
  5. #include<assert.h>
  6. //创建结构体
  7. //静态结构体
  8. //struct seqlist
  9. //{
  10. // int arr[100];
  11. // int size;
  12. //};
  13. typedef int SLDataType;
  14. //动态结构体
  15. typedef struct SeqList
  16. {
  17. SLDataType* arr;
  18. int size;//有效数据的个数
  19. int capacity;//顺序表的大小
  20. }SL;
  21. //初始化顺序表
  22. void SLInit(SL* ps);
  23. //销毁顺序表
  24. void SLDestroy(SL* ps);
  25. //打印代码
  26. void SLPrint(SL ps);
  27. //头部插⼊删除 / 尾部插⼊删除
  28. //尾部插入
  29. void SLPushBack(SL* ps, SLDataType x);
  30. //头部插入
  31. void SLPushFront(SL* ps, SLDataType x);
  32. //头部删除
  33. void SLPopFront(SL* ps);
  34. //尾部删除
  35. void SLPopBack(SL* ps);
  36. //任意位置插入
  37. void SLInsert(SL* ps, int pos, SLDataType x);
  38. //任意位置删除
  39. void SLErase(SL* ps, int pos);
  40. //查找数据
  41. int SLFind(SL* ps, SLDataType x);

SqList.c:

  1. //进行顺序表的实现
  2. #include"SeqList.h";
  3. //顺序表初始化
  4. void SLInit(SL* s)
  5. {
  6. s->arr = NULL;
  7. s->size = s->capacity = 0;
  8. }
  9. //顺序表的销毁
  10. void SLDestroy(SL* ps)
  11. {
  12. if (ps->arr != NULL)
  13. {
  14. free(ps->arr);
  15. }
  16. ps->arr = NULL;
  17. ps->capacity = ps->size = 0;
  18. }
  19. //判断内存空间够不够
  20. void SLCheckcapacity(SL* ps)
  21. {
  22. if (ps->size == ps->capacity)
  23. {
  24. //三目表达式
  25. int newcapacity = ps->capacity == 0 ? 4 : 2 * ps->capacity;
  26. //对顺序表进行成倍的扩充
  27. SLDataType* tmp = (SLDataType*)realloc(ps->arr, newcapacity * sizeof(SLDataType));
  28. if (tmp == NULL)
  29. {
  30. perror("ralloc fail!");
  31. return 1;
  32. }
  33. ps->arr = tmp;
  34. ps->capacity = newcapacity;
  35. }
  36. }
  37. //尾插
  38. void SLPushBack(SL* ps, SLDataType x)
  39. {
  40. //首先要判断空间够不够
  41. assert(ps);//断言ps不为空指针
  42. SLCheckcapacity(ps);
  43. /*ps->arr[ps->size] = x;
  44. ps->size++;*/
  45. ps->arr[ps->size++] = x;
  46. }
  47. //头插
  48. void SLPushFront(SL* ps, SLDataType x)
  49. {
  50. assert(ps);
  51. SLCheckcapacity(ps);
  52. for (int i = ps->size;i>0; i--)
  53. {
  54. ps->arr[i] = ps->arr[i - 1];
  55. }
  56. ps->arr[0] = x;
  57. ps->size++;
  58. }
  59. //打印
  60. void SLPrint(SL ps)
  61. {
  62. for (int i = 0; i < ps.size; i++)
  63. {
  64. printf("%d ", ps.arr[i]);
  65. }
  66. printf("\n");
  67. }
  68. //尾删
  69. void SLPopBack(SL* ps)
  70. {
  71. assert(ps);
  72. assert(ps->size);
  73. ps->arr[ps->size - 1] = -1;
  74. --ps->size;
  75. }
  76. //头删
  77. void SLPopFront(SL* ps)
  78. {
  79. assert(ps);
  80. assert(ps->size);
  81. for (int i = 0;i<ps->size-1; i++)
  82. {
  83. ps->arr[i] = ps->arr[i + 1];
  84. }
  85. --ps->size;
  86. }
  87. //任意位置插入
  88. void SLInsert(SL* ps, int pos, SLDataType x)
  89. {
  90. assert(ps);
  91. assert(pos >= 0 && pos <= ps->size);
  92. SLCheckcapacity(ps);
  93. for (int i = ps->size;i>pos; i--)
  94. {
  95. ps->arr[i] = ps->arr[i - 1];
  96. }
  97. ps->arr[pos] = x;
  98. ps->size++;
  99. }
  100. //在任意位置删除
  101. void SLErase(SL* ps, int pos)
  102. {
  103. assert(ps);
  104. assert(pos >= 0 && pos < ps->size);
  105. for (int i = pos; i < ps->size; i++)
  106. {
  107. ps->arr[i] = ps->arr[i + 1];
  108. }
  109. ps->size--;
  110. }
  111. //查找数据
  112. int SLFind(SL* ps, SLDataType x)
  113. {
  114. assert(ps);
  115. for (int i = 0; i < ps->size; i++)
  116. {
  117. if (ps->arr[i] == x)
  118. {
  119. return i;
  120. }
  121. }
  122. return -1;
  123. }

test.c:

  1. //进行顺序表的测试
  2. #include"SeqList.h";
  3. SLtest01()
  4. {
  5. SL s1;
  6. //初始化顺序表
  7. SLInit(&s1);
  8. //尾插
  9. SLPushBack(&s1, 1);
  10. SLPushBack(&s1, 2);
  11. SLPushBack(&s1, 3);
  12. SLPushBack(&s1, 4);
  13. SLPushBack(&s1, 5);
  14. SLPrint(s1);
  15. //头插
  16. //SLPushFront(&s1, 9);
  17. //SLPushFront(&s1, 8);
  18. //SLPrint(s1);
  19. //尾删
  20. //SLPopFront(&s1);
  21. //SLPrint(s1);
  22. //头删
  23. //SLPopBack(&s1);
  24. //SLPrint(s1);
  25. //在任意位置插入
  26. //SLInsert(&s1,2,88);
  27. //SLPrint(s1);
  28. //在任意位置删除
  29. //SLErase(&s1, 2);
  30. //SLPrint(s1);
  31. //查找数据
  32. //int ret = SLFind(&s1, 3);
  33. //printf("找到了,它的下标为%d\n", ret);
  34. //销毁顺序表
  35. SLDestroy(&s1);
  36. }
  37. int main()
  38. {
  39. SLtest01();
  40. return 0;
  41. }

好了,各位老铁以上就是我跟大家分享的顺序表的全部内容,觉得小编写的还不错的话,记得给小编留下免费的三连哦!谢谢大家!

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

闽ICP备14008679号