我的编程空间,编程开发者的网络收藏夹
学习永远不晚

C语言全面讲解顺序表使用操作

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

C语言全面讲解顺序表使用操作

编程环境为 ubuntu 18.04。

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

一、顺序表的结构定义

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

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

二、顺序表的结构操作

1.初始化

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

2.插入操作

int insert(Vec *v, int ind, int val) {       //ind为插入元素的位置,val为插入元素的值
    if(v == NULL) return 0;
    if(ind < 0 || ind > v->length) return 0;    //判断要插入的位置是否合法
    if(v->length == v->size) {    
        if(!expand(v)){    //扩容失败
            printf(RED("fail to expand!\n"));
        }
        printf(GREEN("success to expand! the size = %d\n"),v->size);
    }
    for(int i = v->length; i > ind; i--){
        v->data[i] = v->data[i-1];
    }
    v->data[ind] = val;
    v->length += 1;
    return 1;
}

为什么需要判断插入的位置是否合法呢?这是因为顺序表是连续一片存储空间,所以内存是连续的。

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

插入一个元素示意图

3.删除操作

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

4.扩容操作

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

注意扩容这里写的比较巧妙,首先 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语言深入探索动态内存分配的使用

5.释放操作

void clear(Vec *v){  //释放空间
    if(v == NULL) return;
    free(v->data);
    free(v);
    return;
}

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

6.输出

void output(Vec *v){
    if(v == NULL) return ;
    printf("[");
    for(int i = 0; i < v->length; i++){
        i && printf(", ");
        printf("%d", v->data[i]);
    }
    printf("]\n");
    return ;
}

三、示例

#include <stdio.h>
#include<stdlib.h>
#include<time.h>
//#include<windows.h>
#define COLOR(a, b) "\033[" #b "m" a "\033[0m"
#define GREEN(a) COLOR(a, 32)
#define RED(a) COLOR(a, 31)
typedef struct Vector{
    int *data;  //该顺序表这片连续空间的首地址
    int size, length;
} Vec;
Vec *init(int n){    //该顺序表具有n个存储单元
    Vec *v = (Vec *)malloc(sizeof(Vec));  //在内存栈上开辟一个空间  malloc在内存的堆区,在函数外面也能访问
    v->data = (int *)malloc(sizeof(int) * n);
    v->size = n;
    v->length = 0;
    return v;
}
int expand(Vec *v){
    //顺序表的扩容
    //malloc 动态申请空间,空间不一定干净  calloc 动态申请空间,并且清空  realloc 重新申请空间
    int extr_size = v->size;
    int *p;
    while(extr_size) {
        p = (int *)realloc(v->data, sizeof(int) * (v->size + extr_size));
        if(p != NULL) break;   //p不为空,说明扩容成功,这个时候直接跳出循环
        extr_size >>= 1;    //否则就把额外扩容的空间除以2,降低要求
    }
    if(p == NULL) return 0; //判断跳出循环究竟是扩容成功还是扩容失败,如果扩容失败,那就是p为空地址,找不到符合条件的内存区域
    v->size += extr_size;
    v->data = p;
    return 1;
}
int insert(Vec *v, int ind, int val) {       //ind为插入元素的位置,val为插入元素的值
    if(v == NULL) return 0;
    if(ind < 0 || ind > v->length) return 0;
    if(v->length == v->size) {
        if(!expand(v)){
            printf(RED("fail to expand!\n"));
        }
        printf(GREEN("success to expand! the size = %d\n"),v->size);
    }
    for(int i = v->length; i > ind; i--){
        v->data[i] = v->data[i-1];
    }
    v->data[ind] = val;
    v->length += 1;
    return 1;
}
int erase(Vec *v, int ind){    //把下标为ind的元素删除
    if(v == NULL) return 0;
    if(ind < 0 || ind >= v->length) return 0;
    for(int i = ind + 1; i < v->length; i++){
        v->data[i - 1] = v->data[i];
    }
    v->length -= 1;
    return 1;
}
void output(Vec *v){
    if(v == NULL) return ;
    printf("[");
    for(int i = 0; i < v->length; i++){
        i && printf(", ");
        printf("%d", v->data[i]);
    }
    printf("]\n");
    return ;
}
void clear(Vec *v){  //释放空间
    if(v == NULL) return;
    free(v->data);
    free(v);
    return;
}
int main(){
    #define MAX_N 20
    Vec *v = init(1);
    srand(time(0));  //设置种子
    for (int i = 0; i < MAX_N; i++){
        int op = rand() % 4;
        int ind = rand() % (v->length + 3) - 1; //取值范围[-1, v->length + 1]
        int val = rand() % 100;  //val为1到99之间的数
        switch(op){
            case 0:
            case 1:
            case 2: {
                printf("insert %d at %d to the Vector = %d\n", val, ind, insert(v, ind, val));
            }break;
            case 3:{
                printf("erase a item at %d = %d\n",ind,erase(v, ind));
            }break;
        }
        output(v);
        printf("\n");
    }
    #undef MAX_N
    clear(v);
    return 0;
}

输出结果如下:

insert 82 at 0 to the Vector = 1
[82]
 
insert 38 at 2 to the Vector = 0
[82]
 
success to expand! the size = 2
insert 7 at 1 to the Vector = 1
[82, 7]
 
success to expand! the size = 4
insert 86 at 2 to the Vector = 1
[82, 7, 86]
 
erase a item at 4 = 0
[82, 7, 86]
 
erase a item at 4 = 0
[82, 7, 86]
 
insert 48 at 0 to the Vector = 1
[48, 82, 7, 86]
 
insert 65 at 5 to the Vector = 0
[48, 82, 7, 86]
 
success to expand! the size = 8
insert 92 at 4 to the Vector = 1
[48, 82, 7, 86, 92]
 
erase a item at 2 = 1
[48, 82, 86, 92]
 
insert 81 at 2 to the Vector = 1
[48, 82, 81, 86, 92]
 
insert 9 at 0 to the Vector = 1
[9, 48, 82, 81, 86, 92]
 
insert 99 at 1 to the Vector = 1
[9, 99, 48, 82, 81, 86, 92]
 
insert 29 at 7 to the Vector = 1
[9, 99, 48, 82, 81, 86, 92, 29]
 
success to expand! the size = 16
insert 38 at 0 to the Vector = 1
[38, 9, 99, 48, 82, 81, 86, 92, 29]
 
erase a item at 0 = 1
[9, 99, 48, 82, 81, 86, 92, 29]
 
erase a item at 8 = 0
[9, 99, 48, 82, 81, 86, 92, 29]
 
erase a item at 6 = 1
[9, 99, 48, 82, 81, 86, 29]
 
insert 57 at -1 to the Vector = 0
[9, 99, 48, 82, 81, 86, 29]
 
insert 32 at 4 to the Vector = 1
[9, 99, 48, 82, 32, 81, 86, 29]

到此这篇关于C语言全面讲解顺序表使用操作的文章就介绍到这了,更多相关C语言顺序表内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

C语言全面讲解顺序表使用操作

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

C语言怎么实现顺序表的操作

这篇文章主要介绍了C语言怎么实现顺序表的操作的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇C语言怎么实现顺序表的操作文章都会有所收获,下面我们一起来看看吧。线性表线性表(linear list)是n个具有相同特
2023-06-30

C语言顺序表如何使用

本篇内容介绍了“C语言顺序表如何使用”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!编程环境为 ubuntu 18.04。顺序表需要连续一片存
2023-06-30

C语言实现顺序表的基本操作的示例详解

顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储。本文将通过示例为大家讲解一下顺序表的基本操作,需要的可以参考一下
2022-11-13

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录