• [数据结构初阶]顺序表


    目录

    线性表

    顺序表

     1. 静态顺序表:使用定长数组存储元素。

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

    接口实现 

    SeqList.h

    SeqList.c

     Test.c

     数组相关面试题

     顺序表的问题及思考


    线性表

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

    顺序表

             顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储。在数组上完成数据的增删查改。
            顺序表相较于链表有一个要求,数据必须从第一个位置连续存储的!
            顺序表一般可以分为:

     1. 静态顺序表:使用定长数组存储元素

    1. #pragma once
    2. #define N 100
    3. typedef int SLDataType;
    4. struct SeqList
    5. {
    6. SLDataType a[N];
    7. int size;
    8. };

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

    1. #pragma once
    2. typedef int SLDataType;
    3. struct SeqList
    4. {
    5. SLDataType* a;
    6. int size;
    7. int capacity;//容量
    8. };

    接口实现 

    SeqList.h

    1. #pragma once
    2. typedef int SLDataType;
    3. typedef struct SeqList
    4. {
    5. SLDataType* a;
    6. int size;
    7. int capacity;//容量
    8. }SL;
    9. void SLInit(SL* ps);
    10. void SLDestory(SL* ps);
    11. void SLCheckCapacity(SL* ps);
    12. void SLPushBack(SL* ps, SLDataType x);
    13. void SLpopBack(SL* ps);
    14. void SLPushFront(SL* ps, SLDataType x);
    15. void SLpopFront(SL* ps);
    16. void SLInsert(SL* ps, int pos, SLDataType x);
    17. void SLErase(SL* ps, int pos);
    18. int SLFind(SL* ps, SLDataType x);
    19. void SLModify(SL* ps, int pos,int x);
    20. void SLPrint(SL* ps);

    SeqList.c

    1. #define _CRT_SECURE_NO_WARNINGS 1
    2. #include"SeqList.h"
    3. #include
    4. #include
    5. #include
    6. void SLInit(SL* ps) {
    7. assert(ps != NULL);
    8. ps->a = NULL;
    9. ps->size = ps->capacity = 0;
    10. }
    11. void SLCheckCapacity(SL* ps)
    12. {
    13. assert(ps != NULL);
    14. if (ps->capacity == ps->size)
    15. {
    16. int newcapacity = ps->capacity == 0 ? 4 : ps->capacity * 2;
    17. SLDataType* tmp = realloc(ps->a, newcapacity * sizeof(SLDataType));
    18. if (tmp == NULL) {
    19. printf("realloc fall\n");
    20. exit(-1);
    21. }
    22. ps->a = tmp;
    23. ps->capacity = newcapacity;
    24. }
    25. }
    26. void SLPushBack(SL* ps, SLDataType x) {
    27. assert(ps != NULL);
    28. /*SLCheckCapacity(ps);
    29. ps->a[ps->size] = x;
    30. ps->size++;*/
    31. SLInsert(ps, ps->size, x);
    32. }
    33. void SLPrint(SL* ps) {
    34. assert(ps != NULL);
    35. for (int i = 0; i < ps->size; ++i)
    36. {
    37. printf("%d", ps->a[i]);
    38. }
    39. printf("\n");
    40. }
    41. void SLDestory(SL* ps)
    42. {
    43. assert(ps != NULL);
    44. if (ps -> a)
    45. {
    46. free(ps->a);
    47. ps->a = NULL;
    48. ps->capacity = 0;
    49. ps->size = 0;
    50. }
    51. }
    52. void SLPushFront(SL* ps, SLDataType x) {
    53. /*assert(ps != NULL);
    54. SLCheckCapacity(ps);
    55. int end = ps->size - 1;
    56. while (end >= 0)
    57. {
    58. ps->a[end + 1] = ps->a[end];
    59. --end;
    60. }
    61. ps->a[0] = x;
    62. ps->size++;*/
    63. SLInsert(ps, 0, x);
    64. }
    65. void SLpopBack(SL* ps) {
    66. assert(ps != NULL);
    67. /*if (ps->size == 0)
    68. {
    69. printf("SeqList is empty");
    70. return;
    71. }*/
    72. assert(ps->size > 0);
    73. ps->size--;
    74. }
    75. void SLpopFront(SL* ps) {
    76. assert(ps != NULL);
    77. assert(ps->size > 0);
    78. /*int begin = 1;
    79. while (begin < ps->size)
    80. {
    81. ps->a[begin - 1] = ps->a[begin];
    82. ++begin;
    83. }
    84. ps->size--;*/
    85. SLErase(ps, 0);
    86. }
    87. void SLInsert(SL* ps, int pos, SLDataType x)
    88. {
    89. assert(ps != NULL);
    90. assert(pos >= 0 && pos <= ps->size);
    91. SLCheckCapacity(ps);
    92. int end = ps->size - 1;
    93. while (end >= pos)
    94. {
    95. ps->a[end + 1] = ps->a[end];
    96. end--;
    97. }
    98. ps->a[pos] = x;
    99. ps->size++;
    100. }
    101. void SLErase(SL* ps, int pos) {
    102. assert(ps != NULL);
    103. assert(pos >= 0 && pos < ps->size);
    104. int begin = pos;
    105. while (begin < ps-> size - 1)
    106. {
    107. ps->a[begin] = ps->a[begin + 1];
    108. ++begin;
    109. }
    110. ps->size--;
    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->a[i] == x)
    118. {
    119. return i;
    120. }
    121. }
    122. return -1;
    123. }
    124. void SLModify(SL* ps, int pos,int x)
    125. {
    126. assert(ps);
    127. assert(pos >= 0 && pos < ps->size);
    128. ps->a[pos] = x;
    129. }

     Test.c

    1. #define _CRT_SECURE_NO_WARNINGS 1
    2. #include "SeqList.h"
    3. #include
    4. #include
    5. void menu()
    6. {
    7. printf("*****************************************************************\n");
    8. printf("1、查找 2、修改\n");
    9. printf("3、尾插 4、头插\n");
    10. printf("5、任意删 6、任意插\n");
    11. printf("7、尾删 8、头删\n");
    12. printf("9、打印 -1、退出\n");
    13. printf("*****************************************************************\n");
    14. }
    15. int main()
    16. {
    17. SL s1;
    18. SLInit(&s1);
    19. int option ;
    20. do {
    21. menu();
    22. if (scanf("%d", &option) == EOF)
    23. {
    24. printf("scanf输入错误\n");
    25. break;
    26. }
    27. int val, pos;
    28. switch (option)
    29. {
    30. case -1:
    31. printf("退出\n");
    32. exit(0);
    33. break;
    34. case 1:
    35. printf("请输入你要查找的值\n");
    36. int x;
    37. scanf("%d", &x);
    38. int pos = SLFind(&s1, x);
    39. printf("在%d位置处\n",pos);
    40. break;
    41. case 2: {
    42. int y;
    43. int z;
    44. printf("请输入你要修改的值和修改后的值\n");
    45. scanf("%d%d", &y, &z);
    46. pos = SLFind(&s1, y);
    47. if (pos != -1)
    48. {
    49. SLModify(&s1, pos, z);
    50. }
    51. else
    52. {
    53. printf("没找到:%d\n", y);
    54. }
    55. break;
    56. }
    57. case 3:
    58. printf("请连续输入你要尾插的数据,以0结束:\n");
    59. scanf("%d", &val);
    60. while (val!=0)
    61. {
    62. SLPushBack(&s1, val);
    63. scanf("%d", &val);
    64. }
    65. break;
    66. case 4:
    67. printf("请连续输入你要头插的数据,以0结束:\n");
    68. scanf("%d", &val);
    69. while (val != 0)
    70. {
    71. SLPushFront(&s1, val);
    72. scanf("%d", &val);
    73. }
    74. break;
    75. case 5:
    76. {
    77. int y;
    78. printf("请输入你要删除的位置\n");
    79. scanf("%d", &y);
    80. SLErase(&s1, y);
    81. break;
    82. }
    83. case 6:
    84. {
    85. int y;
    86. int x;
    87. printf("请输入你要插入的位置,和插入的值\n");
    88. scanf("%d%d", &y, &x);
    89. SLInsert(&s1, y, x);
    90. break;
    91. }
    92. case 7:
    93. SLpopBack(&s1);
    94. break;
    95. case 8:
    96. SLpopFront(&s1);
    97. break;
    98. case 9:
    99. SLPrint(&s1);
    100. break;
    101. default:
    102. exit(-1);
    103. break;
    104. }
    105. } while (option != -1);
    106. SLDestory(&s1);
    107. return 0;
    108. }

     

     数组相关面试题

    1、分析以下函数的空间复杂度(   )

            A.O(n)

            B.O(n^2)

            C.O( 1 )

            D.O(nlogn)

    1. int** fun(int n) {
    2. int ** s = (int **)malloc(n * sizeof(int *));
    3. while(n--)
    4. s[n] = (int *)malloc(n * sizeof(int));
    5. return s;
    6. }

      答案解析:

    此处开辟的是一个二维数组,数组有n行,每行分别有1,2,3,...n列,所以是n(n + 1)/2个元素空间,空间复杂度为n^2

    2、如果一个函数的内部中只定义了一个二维数组a[3][6],请问这个函数的空间复杂度为(   )

            A.O(n)

            B.O(n^2)

            C.O( 1 )

            D.O(m*n)

     答案解析:

    函数内部数组的大小是固定的,不论函数运行多少次,所需空间都是固定大小的,因此空间复杂度为O(1)

    27. 移除元素 - 力扣(LeetCode)

    1. int removeElement(int* nums, int numsSize, int val){
    2. int src = 0, dst = 0;
    3. while(src < numsSize)
    4. {
    5. if(nums[src] == val)
    6. {
    7. src++;
    8. }else{
    9. nums[dst++] = nums[src++];
    10. }
    11. }
    12. return dst;
    13. }
    1. int removeElement(int* nums, int numsSize, int val){
    2. int j = 0;
    3. int i = 0;
    4. for(i = 0;i < numsSize; ++i)
    5. {
    6. if(nums[i] == val)
    7. {
    8. for(j = i+1;j < numsSize;j++)
    9. {
    10. nums[j-1] = nums[j];
    11. }
    12. numsSize--;
    13. i--;
    14. }
    15. }
    16. return numsSize;
    17. }

    26. 删除有序数组中的重复项 - 力扣(LeetCode)

    1. int removeDuplicates(int* nums, int numsSize){
    2. int left = 0;
    3. int right = 0;
    4. while(right
    5. {
    6. if(nums[left] == nums[right])
    7. {
    8. right++;
    9. }else{
    10. nums[++left]=nums[right++];
    11. }
    12. }
    13. return ++left;
    14. }

    88. 合并两个有序数组 - 力扣(LeetCode)

    1. void merge(int* nums1, int nums1Size, int m, int* nums2, int nums2Size, int n){
    2. int num1right = m - 1;
    3. int num2right = n - 1;
    4. int a = m + n - 1;
    5. while(num1right >= 0 || num2right >= 0)
    6. {
    7. if(num2right < 0)
    8. {
    9. nums1[a--] = nums1[num1right--];
    10. }
    11. else if(num1right < 0)
    12. {
    13. nums1[a--] = nums2[num2right--];
    14. }
    15. else if(nums1[num1right] >= nums2[num2right])
    16. {
    17. nums1[a--] = nums1[num1right--];
    18. }
    19. else{
    20. nums1[a--] = nums2[num2right--];
    21. }
    22. }
    23. }

     顺序表的问题及思考

    1. 中间/头部的插入删除,时间复杂度为O(N)
    2. 增容需要申请新空间,拷贝数据,释放旧空间。会有不小的消耗。
    3. 增容一般是呈2倍的增长,势必会有一定的空间浪费。例如当前容量为100,满了以后增容到200,我们再继续插入了5个数据,后面没有数据插入了,那么就浪费了95个数据空间。
    思考:如何解决以上问题呢?去下篇博客看看链表。

  • 相关阅读:
    STM32个人笔记-FatFs文件系统
    从底层结构开始学习FPGA(8)----Block RAM(BRAM,块RAM)
    【面试题】js实现将excel表格copy到页面
    Java覆盖与重载
    【Arduino+ESP32专题】Modbus RTU简介
    【吴恩达机器学习-笔记整理】异常检测与高斯分布
    【Java并发入门】01 并发编程Bug的源头
    芒格-“永远不要有受害者心态”
    吃透Redis(七):网络框架篇-redis 6.0 IO多线程原子性保证
    radiantq:jQuery Gantt Package--好使的HTML5甘特图
  • 原文地址:https://blog.csdn.net/qq_51581716/article/details/127575887