• 【数据结构】顺序表的实现



    一、线性表

    二、顺序表的简介

    1、顺序表的概念

    2、顺序表的优点

    3、顺序表的缺点

    三、传值和传址的理解

    四、SeqList.h

    五、SeqList.c

    1、顺序表的初始化

    2、顺序表的销毁

    3、顺序表的打印

    4、判断是否需要扩容

    5、顺序表的尾插、尾删

    6、顺序表的头插、头删

    7、顺序表的查找

    8、在下标pos位置插入删除

    9、顺序表的修改

    六、力扣oj

    1、移除元素

    2、删除有序数组中的重复项

    3、合并两个有序数组


    一、线性表

    线性表是n个具有相同特性的数据元素的有限序列。

    线性表是一种在实际中广泛使用的数据结构,常见的线性表:顺序表、链表、栈、队列、字符串...

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

    二、顺序表的简介

    1、顺序表的概念

    顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储。在数组上完成数据的增删查改。

    2、顺序表的优点

    1、随机访问时间复杂度O(1)

    2、不用像链表那样,需要额外开辟空间存放指针

    3、顺序表的缺点

    1、空间不够,需要扩容,扩容可能需要重新申请一块新的空间,拷贝原始数据,释放旧空间。

    2、一般是2倍扩容,一次扩容太多造成空间浪费,扩容太少可能导致空间不足,扩容频繁。2倍比较合适。但是仍存在空间浪费。

    3、中间/头部插入删除需要挪动数据,时间复杂度O(N)

    三、传值和传址的理解

    1、顺序表中传入的实参是结构体变量,形参是实参的临时拷贝,在拷贝中更改不会影响传入的实参。顺序表中打印函数不会改变实参中的内容,可传值也可传址,但是传值存在拷贝过程,有较大的消耗,所以这个函数也建议传址。

    2、链表中传入的实参是结构体头指针,当使用头插头删等接口时,需要改变头指针,所以要传入二级指针。但是修改头指针指向的next指针或者date值时,传值也行。

    四、SeqList.h

    1. #pragma once
    2. #define _CRT_SECURE_NO_WARNINGS 1
    3. #include
    4. #include
    5. #include
    6. typedef int SLDateType;
    7. typedef struct SeqList
    8. {
    9. SLDateType* arr;//动态开辟的数组
    10. int size;//当前存放的数据个数
    11. int capacity;//有效容量
    12. }SL;
    13. void SLInit(SL* psl);//初始化
    14. void SLDestory(SL* psl);//销毁
    15. void SLPrint(SL* psl);//打印
    16. void SLExpend(SL* psl);//判断扩容
    17. void SLPushBack(SL* psl, SLDateType x);//尾插
    18. void SLPopBack(SL* psl);//尾删
    19. void SLPushFront(SL* psl, SLDateType x);//头插
    20. void SLPopFront(SL* psl);//头删
    21. int SLFind(SL* psl,SLDateType x);//查找
    22. void SLInsert(SL* psl, size_t pos, SLDateType x);//在pos位置插入x
    23. void SLErase(SL* psl, size_t pos);//在pos位置删除x
    24. void SLModify(SL* psl, size_t pos, SLDateType x);//修改

    五、SeqList.c

    1、顺序表的初始化

    1. void SLInit(SL* psl)//初始化
    2. {
    3. assert(psl);
    4. psl->arr = NULL;
    5. psl->capacity = psl->size = 0;
    6. }

    初始化中,这里arr数组初始化为NULL。(也可以根据个人喜好为arr数组在堆区动态开辟几个空间)

    2、顺序表的销毁

    1. void SLDestory(SL* psl)//销毁
    2. {
    3. assert(psl);
    4. free(psl->arr);
    5. psl->arr = NULL;
    6. psl->capacity = psl->size = 0;
    7. }

    把动态开辟的arr数组free并置空,size和capacity置为0

    3、顺序表的打印

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

    4、判断是否需要扩容

    1. void SLExpend(SL* psl)//判断扩容
    2. {
    3. //检查容量capacity,判断是否需要扩容
    4. if (psl->size == psl->capacity)
    5. {
    6. int newCapacity = psl->capacity == 0 ? 4 : psl->capacity * 2;
    7. //psl->capacity = psl->capacity == 0 ? 4 : psl->capacity * 2;
    8. //使用newCapacity而不是直接用capacity作用是防止后续空间扩容失败
    9. //当然后续失败了也直接exit结束程序了
    10. SLDateType* tmp = (SLDateType*)realloc(psl->arr, sizeof(SLDateType) * newCapacity);
    11. if (tmp == NULL)
    12. {
    13. perror("realloc fail!\n");
    14. exit(-1);
    15. }
    16. psl->arr = tmp;
    17. psl->capacity = newCapacity;
    18. }
    19. }

    因为初始化时arr没有给空间,这里检查扩容时给初始空间。

    注意用newCapacity和tmp先接收新容量和新空间,防止后续空间动态开辟失败(那么就会有人问了,后面realloc失败不是直接exit了吗,为什么还要用newCapacity暂时存放新的容量,而不是直接用psl->capacity = psl->capacity == 0 ? 4 : psl->capacity * 2?是因为如果有人后边是用温柔的检查,直接return,那么这样写会导致capacity不准确)

    5、顺序表的尾插、尾删

    1. void SLPushBack(SL* psl,SLDateType x)//尾插
    2. {
    3. assert(psl);
    4. SLExpend(psl);//检查扩容
    5. psl->arr[psl->size] = x;
    6. psl->size++;
    7. }
    8. void SLPopBack(SL* psl)//尾删
    9. {
    10. assert(psl);
    11. assert(psl->size > 0);
    12. psl->size--;
    13. }

    因为size是顺序表能访问的数据个数,尾删直接size--就行。不用担心那个删除的元素的值还放在那里,因为size--后,顺序表根本访问不到那个数据了。

    6、顺序表的头插、头删

    1. void SLPushFront(SL* psl, SLDateType x)//头插
    2. {
    3. assert(psl);
    4. SLExpend(psl);//判断扩容
    5. //int end = psl->size==0?0:psl->size-1;//当时怕size等于0,导致end等于-1,其实end等于-1不会进循环
    6. int end = psl->size-1;//end是数组最后一个元素的下标
    7. while (end>=0)
    8. {
    9. psl->arr[end + 1] = psl->arr[end];
    10. end--;
    11. }
    12. psl->arr[0] = x;
    13. psl->size++;
    14. }
    15. void SLPopFront(SL* psl)//头删
    16. {
    17. assert(psl);
    18. assert(psl->size > 0);
    19. for (int i = 0; i < psl->size-1; i++)
    20. {
    21. psl->arr[i] = psl->arr[i + 1];
    22. }
    23. psl->size--;
    24. }

    头插复杂一点,需要从最后一个元素开始往后边挪动数据。

    头删迭代覆盖即可。

    7、顺序表的查找

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

    返回下标

    8、在下标pos位置插入删除

    1. //注意,这里的形参用的size_t
    2. void SLInsert(SL* psl, size_t pos, SLDateType x)//在pos位置插入x
    3. {
    4. assert(psl);
    5. assert(pos <= psl->size);//pos是size_t类型>=0
    6. SLExpend(psl);//判断扩容
    7. size_t end = psl->size;//end要等于psl->size
    8. for (int i = 0; i < psl->size - pos; i++)
    9. {
    10. psl->arr[end] = psl->arr[end - 1];
    11. end--;
    12. }
    13. psl->arr[pos] = x;
    14. psl->size++;
    15. }
    16. void SLErase(SL* psl, size_t pos)//在pos位置删除x
    17. {
    18. assert(psl);
    19. assert(pos < psl->size);//这个断言顺便检查了size<=0的情况(删空了还在删)
    20. size_t begin = pos;
    21. while (begin < psl->size-1)//这里一定要size-1,不要做越界覆盖
    22. {
    23. psl->arr[begin] = psl->arr[begin + 1];
    24. ++begin;
    25. }
    26. --psl->size;
    27. }

    9、顺序表的修改

    1. void SLModify(SL* psl, size_t pos, SLDateType x)//修改
    2. {
    3. assert(psl);
    4. assert(pos < psl->size);
    5. psl->arr[pos] = x;
    6. }

    六、力扣oj

    1、移除元素

    1. int removeElement(int* nums, int numsSize, int val){
    2. int fast=0;
    3. int slow=0;
    4. while(fast
    5. {
    6. if(nums[fast]!=val)//当“快指针”指向的值不等于val时,
    7. {
    8. nums[slow++]=nums[fast++];//把“快指针”指向的值给“慢指针”
    9. }
    10. else
    11. {
    12. fast++;
    13. }
    14. }
    15. return slow;
    16. }

    思路:当“快指针”指向的值不等于val时,把“快指针”指向的值给“慢指针”,反之,快++,慢不动

    2、删除有序数组中的重复项

    1. int removeDuplicates(int* nums, int numsSize){
    2. int fast=0;
    3. int slow=0;
    4. while(fast
    5. {
    6. if(nums[fast]==nums[slow])//如果快指针指向的数值和slow指向的相等,fast++
    7. {
    8. fast++;
    9. }
    10. else//反之,slow先++,再拷贝fast指向的值到slow
    11. {
    12. slow++;
    13. nums[slow]=nums[fast];
    14. fast++;
    15. }
    16. }
    17. return slow+1;
    18. }

    3、合并两个有序数组

    1. void merge(int* nums1, int nums1Size, int m, int* nums2, int nums2Size, int n){
    2. int end1=m-1;
    3. int end2=n-1;
    4. int i=m+n-1;
    5. //从数组nums1的末尾开始覆盖
    6. while(end1>=0&&end2>=0)
    7. {
    8. if(nums2[end2]>=nums1[end1])
    9. {
    10. nums1[i]=nums2[end2];
    11. --end2;
    12. --i;
    13. }
    14. else
    15. {
    16. nums1[i]=nums1[end1];
    17. --end1;
    18. --i;
    19. }
    20. }
    21. while(end2>=0)//处理一下end2没放完的情况
    22. {
    23. nums1[i]=nums2[end2];
    24. --end2;
    25. --i;
    26. }
    27. }

    从num1的末尾开始覆盖,最后处理一下nums2没放完的情况

  • 相关阅读:
    美业连锁门店收银系统源码-如何查看收款门店对应的加盟商?
    静态代码块
    SkyWalking入门之Agent原理初步分析
    试剂盒和示踪剂—艾美捷FLIVO探针活体凋亡检测分析
    【Helm三部曲】 Helm 简介及安装
    DOM 简介 | 深入了解DOM
    面试题 17.09. 第 k 个数(技巧)
    linux平台制作deb包
    操作系统(三)| 进程管理上 进程状态 同步 互斥
    绕任意轴旋转矩阵推导
  • 原文地址:https://blog.csdn.net/gfdxx/article/details/126051994