• 【数据结构】详解动态顺序表


    作者:一个喜欢猫咪的的程序员

    专栏:《数据结构》

    喜欢的话:世间因为少年的挺身而出,而更加瑰丽。                                  ——《人民日报》

     


    目录

    顺序表:

    顺序表结构: 

    SeqLisht.c功能函数的实现: 

     SeqList顺序表的各个功能函数的实现:

    基础功能:

    初始化SeqList:

    销毁SeqList:

    打印SeqList:

    扩容capacity:

    增删查改功能:

    尾插:

    尾删:

    头插:

    头删:

    在任意位置插入:

    删除任意位置:

    查找:

    SeqList.h函数声明:

    Test.c测试代码:


    顺序表

    顺序表是在计算机内存中以数组的形式保存的线性表,线性表的顺序存储是指用一组地址连续的存储单元依次存储线性表中的各个元素、使得线性表中在逻辑结构上相邻的数据元素存储在相邻的物理存储单元中,即通过数据元素物理存储的相邻关系来反映数据元素之间逻辑上的相邻关系,采用顺序存储结构的线性表通常称为顺序表。顺序表是将表中的结点依次存放在计算机内存中一组地址连续的存储单元中。


    顺序表结构: 

     顺序表本质上是一段连续存放的数据,类似于数组

     

     我们想想需要什么参数:

    • 首先是连续存放的数据,我们会想到数组,但是我们的个数不能改变,所以我们需要一个指针a指向malloc开辟一段连续的空间。
    • 然后当我们需要改变这个空间的大小,我们还需要一个变量来表示已有空间的大小capacity
    • 我们如何判断什么时候需要扩容呢?需要一个计算已有数据的个数变量size来判断等于已有空间的大小来决定是否扩容。

     我们这里有多个数据我们可以用结构体比较方便!

    1. typedef int SLDataType;//将int型起个别名为SLDataType,这样方便更改类型
    2. typedef struct SeqList
    3. {
    4. SLDataType* a;//动态开辟的数组
    5. int size;//记录储存了多少个数据
    6. int capacity;//空间容量大小
    7. //多个数据就可以利用结构体
    8. }SL;

    我们在本篇实现的是动态顺序表。

    功能为增删查改!

    我们在SeqList.h文件中进行函数声明。

    SeqList.c函数进行各个函数的实现。

    Test.c函数进行函数的测试,以及最后的菜单编写。 


    SeqLisht.c功能函数的实现: 

    1. #include"SeqList.h"
    2. void SeqListPrint(SL* s)
    3. {//打印
    4. assert(s);
    5. for (int i = 0; i < s->size; i++)
    6. {
    7. printf("%d ", s->a[i]);
    8. }
    9. printf("\n");
    10. }
    11. void SeqListInit(SL* s)
    12. {//初始化的实现
    13. assert(s);
    14. s->a = NULL;
    15. s->size = 0;
    16. s->capacity = 0;
    17. }
    18. void SeqListCherkCapacity(SL* s)
    19. {
    20. assert(s);//扩容capacity
    21. if (s->capacity == s->size)
    22. {
    23. int Newcaoacity = s->capacity == 0 ? 4 : s->capacity * 2;
    24. SLDataType* tmp = (SLDataType*)realloc(s->a, Newcaoacity * sizeof(SLDataType));
    25. //realloc可能是返回一个新的地址,为异地扩容
    26. if (tmp == NULL)
    27. {
    28. perror("realloc faile");
    29. exit(-1);//可以提前结束程序,为异常结束
    30. }
    31. s->a = tmp;
    32. s->capacity = Newcaoacity;
    33. }
    34. }
    35. void SeqListDestroy(SL* s)
    36. {//销毁SeqList
    37. assert(s);
    38. if (s->a)
    39. {
    40. free(s->a);
    41. s->a = NULL;
    42. s->capacity = 0; s->size = 0;
    43. }
    44. }
    45. void SeqListPushBack(SL* s, SLDataType x)
    46. {//SeqList尾插
    47. //扩容
    48. assert(s);//
    49. /*SeqListCherkCapacity(s);
    50. s->a[s->size] = x;
    51. s->size++;*/
    52. SeqListInsert(s, s->size, x);
    53. }
    54. void SeqListPopBack(SL* s) {
    55. //SeqListw尾删
    56. //if (s->size == 0)
    57. //{//温柔的检查
    58. // return;
    59. //}
    60. //assert(s->size>0);//暴力的检查
    61. //s->size--;
    62. SeqListErase(s, s->size - 1);
    63. }
    64. void SeqListPushFront(SL* s, SLDataType x)
    65. {//头插
    66. assert(s);
    67. //SeqListCherkCapacity(s);
    68. //int end = s->size - 1;
    69. //while (end >= 0)
    70. //{
    71. // s->a[end + 1] = s->a[end];
    72. // end--;
    73. //}
    74. //s->a[0] = x;
    75. //s->size++;
    76. SeqListInsert(s, 0, x);
    77. }
    78. void SeqListPopFront(SL* s) {
    79. //头删
    80. assert(s);
    81. assert(s->size > 0);
    82. int begin = 0;
    83. while (begin < s->size - 1)
    84. {
    85. s->a[begin] = s->a[begin + 1];
    86. begin++;
    87. }
    88. s->size--;
    89. SeqListErase(s, 0);
    90. }
    91. void SeqListInsert(SL* s, int pos, SLDataType x)
    92. {//任意位置插入
    93. assert(s);
    94. assert(pos >= 0 && pos <= s->size);
    95. SeqListCherkCapacity(s);
    96. int end = s->size - 1;
    97. while (end >= pos)
    98. {
    99. s->a[end + 1] = s->a[end];
    100. end--;
    101. }
    102. s->a[pos] = x;
    103. s->size++;
    104. }
    105. void SeqListErase(SL* s, int pos)
    106. {//任意位置删除
    107. assert(s);
    108. assert(pos >= 0 && pos <= s->size);
    109. int begin = pos;
    110. while (begin <= s->size)
    111. {
    112. s->a[begin] = s->a[begin + 1];
    113. begin++;
    114. }
    115. s->size--;
    116. }
    117. int SeqListFind(SL* s, SLDataType x,int begin)
    118. {
    119. assert(s);
    120. for (int i = begin; i < s->size; i++)
    121. {
    122. if (s->a[i] == x)
    123. return i;
    124. }
    125. return -1;
    126. }

     SeqList顺序表的各个功能函数的实现:

    基础功能:

    初始化SeqList:

    1. void SeqListInit(SL* s)
    2. {//初始化的实现
    3. assert(s);
    4. s->a = NULL;
    5. s->size = 0;
    6. s->capacity = 0;
    7. }

    销毁SeqList:

    1. void SeqListDestroy(SL* s)
    2. {//销毁SeqList
    3. assert(s);
    4. if (s->a)
    5. {
    6. free(s->a);
    7. s->a = NULL;
    8. s->capacity = 0; s->size = 0;
    9. }
    10. }

    打印SeqList:

    1. void SeqListPrint(SL* s)
    2. {//打印
    3. assert(s);
    4. for (int i = 0; i < s->size; i++)
    5. {
    6. printf("%d ", s->a[i]);
    7. }
    8. printf("\n");
    9. }

    扩容capacity:

    1. void SeqListCherkCapacity(SL* s)
    2. {
    3. assert(s);//扩容capacity
    4. if (s->capacity == s->size)
    5. {
    6. int Newcaoacity = s->capacity == 0 ? 4 : s->capacity * 2;
    7. SLDataType* tmp = (SLDataType*)realloc(s->a, Newcaoacity * sizeof(SLDataType));
    8. //realloc可能是返回一个新的地址,为异地扩容
    9. if (tmp == NULL)
    10. {
    11. perror("realloc faile");
    12. exit(-1);//可以提前结束程序,为异常结束
    13. }
    14. s->a = tmp;
    15. s->capacity = Newcaoacity;
    16. }
    17. }

    增删查改功能:

    尾插:

    1. void SeqListPushBack(SL* s, SLDataType x)
    2. {//SeqList尾插
    3. //扩容
    4. assert(s);//
    5. SeqListCherkCapacity(s);
    6. s->a[s->size] = x;
    7. s->size++;
    8. /*SeqListInsert(s, s->size, x);*/
    9. }

    尾删:

    1. void SeqListPopBack(SL* s) {
    2. //SeqListw尾删
    3. assert(s->size>0);//暴力的检查
    4. s->size--;
    5. /*SeqListErase(s, s->size - 1);*/
    6. }

    头插:

    1. void SeqListPushFront(SL* s, SLDataType x)
    2. {//头插
    3. assert(s);
    4. SeqListCherkCapacity(s);
    5. int end = s->size - 1;
    6. while (end >= 0)
    7. {
    8. s->a[end + 1] = s->a[end];
    9. end--;
    10. }
    11. s->a[0] = x;
    12. s->size++;
    13. /*SeqListInsert(s, 0, x);*/
    14. }

    头删:

    1. void SeqListPopFront(SL* s) {
    2. //头删
    3. assert(s);
    4. assert(s->size > 0);
    5. int begin = 0;
    6. while (begin < s->size - 1)
    7. {
    8. s->a[begin] = s->a[begin + 1];
    9. begin++;
    10. }
    11. s->size--;
    12. //SeqListErase(s, 0);
    13. }

    在任意位置插入:

    1. void SeqListInsert(SL* s, int pos, SLDataType x)
    2. {//任意位置插入
    3. assert(s);
    4. assert(pos >= 0 && pos <= s->size);
    5. SeqListCherkCapacity(s);
    6. int end = s->size - 1;
    7. while (end >= pos)
    8. {
    9. s->a[end + 1] = s->a[end];
    10. end--;
    11. }
    12. s->a[pos] = x;
    13. s->size++;
    14. }

    删除任意位置:

    1. void SeqListErase(SL* s, int pos)
    2. {//任意位置删除
    3. assert(s);
    4. assert(pos >= 0 && pos <= s->size);
    5. int begin = pos;
    6. while (begin <= s->size)
    7. {
    8. s->a[begin] = s->a[begin + 1];
    9. begin++;
    10. }
    11. s->size--;
    12. }

    查找:

    1. int SeqListFind(SL* s, SLDataType x,int begin)
    2. {
    3. assert(s);
    4. for (int i = begin; i < s->size; i++)
    5. {
    6. if (s->a[i] == x)
    7. return i;
    8. }
    9. return -1;
    10. }

    我们思考一个问题:

    头删尾删的情况是不是包含在删除任意位置中?

    头插尾插是不是包含在插入在任意位置?

    YES。所以我们在头删和尾删中可以复用删除任意位置的函数!头插尾插也是!


    SeqList.h函数声明:

    1. #define _CRT_SECURE_NO_WARNINGS 1
    2. #pragma once//防止多次包含
    3. #include<stdio.h>
    4. #include<stdlib.h>
    5. #include<assert.h>
    6. //静态顺序表---不太实用
    7. //#define N 10 //方便全局修改
    8. //typedef int SLDataype;//将int型起个别名为SLDataType,这样方便更改类型
    9. //typedef struct SeqList
    10. //{
    11. // SLDataype arr[N];
    12. // SLDataype size;//记录储存了多少个数据
    13. // //多个数据就可以利用结构体
    14. //}SL;
    15. //void SeqListInit(SL s);//初始化SeqList
    16. //void SeqListBack(SL s, SLDataype x);//SeqList尾插
    17. //动态顺序表---按需扩展空间
    18. typedef int SLDataType;//将int型起个别名为SLDataType,这样方便更改类型
    19. typedef struct SeqList
    20. {
    21. SLDataType* a;//动态开辟的数组
    22. int size;//记录储存了多少个数据
    23. int capacity;//空间容量大小
    24. //多个数据就可以利用结构体
    25. }SL;
    26. void SeqListInit(SL* s);//初始化SeqList
    27. void SeqListDestroy(SL* s);//销毁SeqList
    28. void SeqListPrint(SL* s);//打印SeqList
    29. void SeqListCherkCapacity(SL* s);//扩容capacity
    30. //尾插尾删
    31. void SeqListPushBack(SL* s, SLDataType x);//SeqList尾插
    32. void SeqListPopBack(SL* s);//SeqListw尾删
    33. //头插头删
    34. void SeqListPushFront(SL* s, SLDataType x);//SeqList头插
    35. void SeqListPopFront(SL* s);//SeqListw头删
    36. //任意位置插入删除
    37. void SeqListInsert(SL* s, int pos, SLDataType x);//任意位置插入
    38. void SeqListErase(SL* s, int pos);//任意位置删除
    39. int SeqListFind(SL* s, SLDataType x,int begin);//找到值的位置

    Test.c测试代码:

    1. #include"SeqList.h"
    2. void TestSeqList1()
    3. {
    4. SL sl;
    5. SeqListInit(&sl);//这里形参不能改变实参,所以我们要传递地址过去
    6. SeqListPushBack(&sl,1);
    7. SeqListPushBack(&sl, 2);
    8. SeqListPushBack(&sl, 3);
    9. SeqListPushBack(&sl, 4);
    10. SeqListPrint(&sl);
    11. SeqListPopBack(&sl);
    12. SeqListPrint(&sl);
    13. SeqListPushBack(&sl, 8);
    14. SeqListPrint(&sl);
    15. SeqListPopBack(&sl);
    16. SeqListPopBack(&sl);
    17. SeqListPopBack(&sl);
    18. SeqListPopBack(&sl);
    19. /*SeqListPopBack(&sl);*/
    20. SeqListPrint(&sl);
    21. SeqListPushBack(&sl, 1);
    22. SeqListDestroy(&sl);
    23. }
    24. void Test2()
    25. {
    26. SL sl;
    27. SeqListInit(&sl);
    28. SeqListPushFront(&sl, 10);
    29. SeqListPushFront(&sl, 20);
    30. SeqListPushFront(&sl, 30);
    31. SeqListPushFront(&sl, 40);
    32. SeqListPrint(&sl);
    33. SeqListPopFront(&sl);
    34. SeqListPrint(&sl);
    35. SeqListInsert(&sl,2, 100);
    36. SeqListInsert(&sl, 2, 100);
    37. SeqListInsert(&sl, 0, 100);
    38. SeqListInsert(&sl, 6, 600);
    39. SeqListPrint(&sl);
    40. SeqListPushFront(&sl, 1000);
    41. SeqListPushBack(&sl, 110);
    42. SeqListPrint(&sl);
    43. SeqListErase(&sl, 2);
    44. SeqListErase(&sl, 0);
    45. SeqListPrint(&sl);
    46. int a=SeqListFind(&sl, 100,0);
    47. if (a != -1)
    48. {
    49. SeqListErase(&sl, a);
    50. SeqListPrint(&sl);
    51. }
    52. SeqListDestroy(&sl);
    53. }
    54. void menu()
    55. {
    56. printf("***********************************************\n");
    57. printf("1、尾插数据 2、尾删数据\n");
    58. printf("3、头插数据 4、头删数据\n");
    59. printf("5、查找数据 6、打印数据 -1、退出\n");
    60. printf("***********************************************\n");
    61. }
    62. int main()
    63. {
    64. //Test2();
    65. SL sl;
    66. SeqListInit(&sl);
    67. int option;
    68. int val;
    69. do
    70. {
    71. menu();
    72. printf("请输入你需要的操作:");
    73. scanf("%d", &option);
    74. switch (option)
    75. {
    76. case 1:
    77. printf("请以此输入要插入的数值,以-1为结束标记:");
    78. scanf("%d", &val);
    79. while (val != -1)
    80. {
    81. SeqListPushBack(&sl, val);
    82. scanf("%d", &val);
    83. }
    84. break;
    85. case 2:
    86. SeqListPopBack(&sl);
    87. break;
    88. case 3:
    89. printf("请以此输入要插入的数值,以-1为结束标记:");
    90. scanf("%d", &val);
    91. while (val != -1)
    92. {
    93. SeqListPushFront(&sl, val);
    94. scanf("%d", &val);
    95. }
    96. break;
    97. case 4:
    98. SeqListPopFront(&sl);
    99. break;
    100. case 5:
    101. printf("请以此输入要查找的数值,以-1为结束标记:");
    102. scanf("%d", &val);
    103. int p=0;
    104. while (p<sl.size)
    105. {
    106. p = SeqListFind(&sl, val,p);
    107. printf("%d ", p);
    108. if (p < 0)
    109. break;
    110. p++;
    111. }
    112. printf("\n");
    113. break;
    114. case 6:
    115. SeqListPrint(&sl);
    116. break;
    117. default:
    118. break;
    119. }
    120. } while (option != -1);
    121. SeqListDestroy(&sl);
    122. return 0;
    123. }

  • 相关阅读:
    vue3 script setup 使用tinymce富文本编辑器-f
    基于多目标优化算法的电力系统分析(Matlab代码实现)
    前端面试准备
    JTAG引脚定义的学习
    FPGA实现SDI硬件解码UDP网络传输,送工程源码和QT上位机显示程序
    Verilog中关于reg [3:0] a [7:0] 和 reg [3:0] [7:0] a的区别
    【Spring Boot 3】的安全防线:整合 【Spring Security 6】
    python3:split()分割字符串为字符/字符串列表 2023-11-20
    2022牛客暑期多校训练营5(BCDFGHK)
    【测绘程序设计】Excel度分秒(° ‘ “)转换度(°)模板附代码超实用版
  • 原文地址:https://blog.csdn.net/m0_69061857/article/details/127736387