数据结构初阶—动态顺序表

顺序表:关系线性化,结点顺序存

线性表的特点:同一性、无穷性、有序性


分为三个文件:

其中头文件为:

#pragma once
#define _CRT_SECURE_NO_WARNINGS 1
#include<stdio.h>
#include<string.h>
#include<errno.h>
#include<stdlib.h>
#include<assert.h>
typedef int SLDateType;
#define INIT_CAPACITY 4
//动态数据表 按需申请
typedef struct Seqlist {
    int size;
    int capacity;
    SLDateType* a;
}SL;
//增删查改
void SLInit(SL*ps);
void SLDestory(SL*ps);fengwei 
//尾插
void SLPushBack(SL* ps, SLDateType x);
void SLPopback(SL* ps);
void SLPushFront(SL* ps, SLDateType x);
void SLPopFront(SL* ps);

//打印
void  SLPrint(SL* ps);

//检查库存
void SLCheckCapacity(SL* ps);


//某个位置插入
void SLInsert(SL* ps, int pos, SLDateType x);
void SLErase(SL* ps, int pos);
//查找
int SLFind(SL* ps, SLDateType x);

//删除所有的数据
void ClearList(SL* ps);

测试文件:

#include"Seqlist.h"
void TestSeqList1() {
    SL s;
    SLInit(&s);
    SLPushBack(&s,1);
    SLPushBack(&s,2);
    SLPushBack(&s,3);
    SLPushBack(&s,4);
    SLPushBack(&s,5);
    SLPushBack(&s,6);
    SLPushBack(&s,7);
    SLPrint(&s);
    //SLDestory(&s);
    SLPopback(&s);
    SLPopback(&s);
    SLPrint(&s);
    SLPushFront(&s,11);
    SLPushFront(&s,22);
    SLPushFront(&s,33);
    SLPushFront(&s,44);
    SLPushFront(&s,55);
    SLPrint(&s);
    SLPopFront(&s);
    SLPopFront(&s);
    SLPopFront(&s);
    SLPrint(&s);
    SLInsert(&s, 2, 2);
    SLPrint(&s);
    SLErase(&s, 3);
    SLPrint(&s);
    int ret=SLFind(&s, 5);
    if (ret!= -1) {
        printf("下标为%d\n", ret);
    }
    else 
    {
        printf("找不到了\n");
    }
    SLDestory(&s);
}
void menu()
{
    printf("***********************************************\n");
    printf("1、尾插数据       2、尾删数据\n");
    printf("3、头插数据       4、头删数据\n");
    printf("5、打印数据       6、查找数据\n");
    printf("7、删除所有数据   -1、退出\n");
    printf("***********************************************\n");
}

int main()
{
    SL s;
    SLInit(&s);
    int option = 0;
    int val = 0;
    int ret = 0;
    int a = 0;
    do
    {
        menu();
        printf("请输入你的操作:>");
        scanf("%d", &option);
        switch (option)
        {
        case 1:
            printf("请依次输入你要尾插的数据,以-1结束");
            scanf("%d", &val);
            while (val != -1)
            {
                SLPushBack(&s, val);
                scanf("%d", &val);
            }
            SLPrint(&s);
            break;
        case 2:
            SLPopback(&s);
            SLPrint(&s);
            break;
        case 3:
            printf("请依次输入你要头插的数据,以-1结束");
            scanf("%d", &val);
            while (val != -1)
            {
                SLPushFront(&s, val);
                scanf("%d", &val);
            }
            SLPrint(&s);
            break;
        case 4:
            SLPopFront(&s);//头删
            SLPrint(&s);
            break;
        case 5:
            SLPrint(&s);
            break;
        case 6:
            printf("请输入你要查找的数字");
            scanf("%d", &a);
            ret = SLFind(&s, a);
            if (ret != -1) {
                printf("下标为%d\n", ret);
            }
            else
            {
                printf("找不到了\n");
            }
            break;
        case 7:
            ClearList(&s);
            break;
        default:
            break;
        }
    } while (option != -1);

    SLDestory(&s);

    return 0;
}

代码核心实现文件:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Tech行者

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值