数据结构C //线性表ADT结构及相关函数

数据结构(C语言版)严蔚敏 吴伟民

线性表ADT结构及相关函数

环境:Linux Ubuntu(云服务器)
工具:vim

 

代码块(头文件,函数文件,主文件)
list.h头文件
/*************************************************************************
	> File Name: list.h
	> Author: 
	> Mail: 
	> Created Time: Thu 05 Sep 2024 02:10:41 PM CST
 ************************************************************************/

#ifndef _LIST_H
#define _LIST_H

#include <stdio.h>
#include <stdlib.h>

#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INFEASIBLE -1
#define OVERFLOW -2
#define NOEXIST -3

typedef int Status;

#define LIST_INIT_SIZE 100
#define LISTINCREMENT 10

typedef int ElemType;

typedef struct {
	ElemType *elem;
	int length;
	int listsize;
} List;

#define DATAFMT "%d"

Status InitList(List &L);

Status DestroyList(List &L);

Status ClearList(List &L);

Status ListEmpty(List L);

int ListLength(List L);

Status GetElem(List L, int i, ElemType &e);

int equal(ElemType a, ElemType b);

Status LocateElem(List L, ElemType e, int equal(ElemType, ElemType));

Status PriorElem(List L, ElemType cur_e, ElemType &pre_e);

Status NextElem(List L, ElemType cur_e, ElemType &next_e);

Status ListInsert(List &L, int i, ElemType e);

Status ListDelete(List &L, int i, ElemType &e);

Status visit(ElemType e);

Status ListTraverse(List L, Status visit(ElemType));

void InputList(List &L, int n);

void unionList(List &La, List Lb);

void MergeList(List La, List Lb, List &Lc);

#endif
list.c函数文件
/*************************************************************************
	> File Name: list.c
	> Author: 
	> Mail: 
	> Created Time: Thu 05 Sep 2024 02:16:38 PM CST
 ************************************************************************/

#include <stdio.h>
#include <stdlib.h>
#include "list.h"

Status InitList(List &L) {
	L.elem = (ElemType *)malloc(LIST_INIT_SIZE * sizeof(ElemType));
	if(!L.elem) exit(OVERFLOW);
	
	L.length = 0;
	L.listsize = LIST_INIT_SIZE;
	
	return OK;
}//InitList

Status DestroyList(List &L) {
	free(L.elem);
	
	return OK;
}//DestroyList

Status ClearList(List &L) {
	for(int i = 0; i < L.listsize; i++) {
		L.elem[i] = 0;
	}
	
	L.length = 0;
	
	return OK;
}//ClearList

Status ListEmpty(List L) {
	return L.length == 0 ? TRUE : FALSE;
}//ListEmpty

int ListLength(List L) {
	return L.length;
}//ListLength

Status GetElem(List L, int i, ElemType &e) {
	if(i < 1 || i > ListLength(L)) {
		return ERROR;
	}

	e = L.elem[i-1];
	
	return OK;
}//GetElem

int equal(ElemType a, ElemType b) {
	return a == b ? TRUE : FALSE;
}//equal

Status LocateElem(List L, ElemType e, int equal(ElemType, ElemType)) {
	for(int i = 0; i < ListLength(L); i++) {
		if(equal(e, L.elem[i])) {
			return i + 1;
		}
	}

	return FALSE;
}//LocateElem

Status PriorElem(List L, ElemType cur_e, ElemType &pre_e) {
	if(L.elem[0] == cur_e) {
		return ERROR;
	}

	int i;
	for(i = 0; i < ListLength(L); i++) {
		if(L.elem[i] == cur_e) {
			break;
		}
	}
	if(i == ListLength(L)) {
		return NOEXIST;
	}

	pre_e = L.elem[i-1];
	
	return OK;
}//PriorElem

Status NextElem(List L, ElemType cur_e, ElemType &next_e) {
	if(L.elem[L.length-1] == cur_e) {
		return ERROR;
	}

	int i;
	for(i = 0; i < ListLength(L); i++) {
		if(L.elem[i] == cur_e) {
			break;
		}
	}
	if(i == ListLength(L)) {
		return NOEXIST;
	}

	next_e = L.elem[i+1];

	return OK;
}//NextElem

Status ListInsert(List &L, int i, ElemType e) {
	if(i < 1 || i > L.length + 1) {
		return ERROR;
	}
	if(L.length >= L.listsize) {
		ElemType *newbase = (ElemType *)realloc(L.elem, (L.listsize + LISTINCREMENT) * sizeof(ElemType));
		if(!newbase) exit(OVERFLOW);
		L.elem = newbase;
		L.listsize += LISTINCREMENT;
	}
	ElemType *q = &(L.elem[i-1]);
	for(ElemType *p = &(L.elem[L.length-1]); p >= q; --p) {
		*(p + 1) = *p;
	}
	*q = e;
	++L.length;
	return OK;
}//ListInsert

Status ListDelete(List &L, int i, ElemType &e) {
	if(i < 1 || i > L.length) {
		return ERROR;
	}
	ElemType *p = &(L.elem[i-1]);
	e = *p;
	ElemType *q = &(L.elem[L.length - 1]);
	for(++p; p <= q; ++p) {
		*(p - 1) = *p;
	}
	--L.length;
	return OK;
}//ListDelete

Status visit(ElemType e) {
	if(!e) return ERROR;
	printf(DATAFMT, e);
	printf(" ");
	return OK;
}//visit

Status ListTraverse(List L, Status visit(ElemType)) {
	printf("List traverse: ");
	for(int i = 0; i < L.length; i++) {
		if(!visit(L.elem[i])) {
			return FALSE;
		}
	}
	printf("\n");
	return OK;
}//ListTraverse

void InputList(List &L, int n) {
	if(n >= L.listsize) {
		ElemType *newbase = (ElemType *)realloc(L.elem, (L.listsize + LISTINCREMENT) * sizeof(ElemType));
		if(!newbase) exit(OVERFLOW);
		L.elem = newbase;
		L.listsize += LISTINCREMENT;
	}
	printf("Enter %d List Elem: ", n);
	for(int i = 0; i < n; i++) {
		scanf(DATAFMT, &L.elem[i]);
	}
	L.length = n;
}//InputList

void unionList(List &La, List Lb) {
	int La_len = ListLength(La);
	int Lb_len = ListLength(Lb);
	int i;
	ElemType e;
	for(i = 1; i <= Lb_len; i++) {
		GetElem(Lb, i, e);
		if(!LocateElem(La, e, equal)) {
			ListInsert(La, ++La_len, e);
		}
	}
}//unionList

void MergeList(List La, List Lb, List &Lc) {
	InitList(Lc);

	int i = 1, j = 1, k = 0;
	int La_len = ListLength(La);
	int Lb_len = ListLength(Lb);

	ElemType ai, bj;
	while((i <= La_len) && (j <= Lb_len)) {
		GetElem(La, i, ai);
		GetElem(Lb, j, bj);
		if(ai <= bj) {
			ListInsert(Lc, ++k, ai);
			++i;
		}
		else {
			ListInsert(Lc, ++k, bj);
			++j;
		}
	}
	while(i <= La_len) {
		GetElem(La, i++, ai);
		ListInsert(Lc, ++k, ai);
	}
	while(j <= Lb_len) {
		GetElem(Lb, j++, bj);
		ListInsert(Lc, ++k, bj);
	}
}//MergeList
main.c主文件
/*************************************************************************
	> File Name: main.c
	> Author: 
	> Mail: 
	> Created Time: Thu 05 Sep 2024 02:18:11 PM CST
 ************************************************************************/

#include <stdio.h>
#include <stdlib.h>
#include "list.h"
#include "list.c"

int main() {
	List L;
	//Initialize the list
	InitList(L);

	//Input the list and traverse it
	InputList(L, 10);
	ListTraverse(L, visit);

	//Determine whether the list is empty
	if(ListEmpty(L)) {
		printf("List is empty!\n\n");
	}
	else {
		printf("List is not empty!\n\n");
	}

	//Clear the list
	printf("Prepare clear the list...\n");
	if(ClearList(L)) {
		printf("List is clear!\n");
	}
	else {
		printf("List is not clear!\n");
	}
	//After clearing the list, check whether the list is empty
	if(ListEmpty(L)) {
		printf("List is empty!\n\n");
	}
	else {
		printf("List is not empty!\n\n");
	}

	//Input the list again
	InputList(L, 10);
	printf("\n");

	//Input the number of the element you want to get
	//Here is 3.
	int num1;
	printf("Enter the number of the element you want to get: ");
	scanf("%d", &num1);
	ElemType e1;
	GetElem(L, num1, e1);
	printf("No.%d Elem is ", num1);
	printf(DATAFMT, e1);
	printf(".\n\n");

	//Input the location of the element you want to get
	//Here is 99
	ElemType elem;
	printf("Enter the element you want to locate: ");
	scanf(DATAFMT, &elem);
	if(LocateElem(L, elem, equal)) {
		printf("The position of the element ");
		printf(DATAFMT, elem);
		printf(" is %d\n\n", LocateElem(L, elem, equal));
	}
	else {
		printf("The list doesn't have the elem\n\n");
	}

	//Input the element for which you want to get the priority element
	//Here is 5
	ElemType num2, e2;
	printf("Enter the element for which you want to get the priority element: ");
	scanf(DATAFMT, &num2);
	if(PriorElem(L, num2, e2)) {
		printf("The prior elem of ");
		printf(DATAFMT, num2);
		printf(" is ");
		printf(DATAFMT, e2);
		printf(".\n\n");
	}
	else if(PriorElem(L, num2, e2) == -3) {
		printf("The elem ");
		printf(DATAFMT, num2);
		printf(" dosen't exist!\n\n");
	}
	else {
		printf("The elem %d doesn't have prior elem.\n\n", num2);
	}

	//Input the element for which you want to get the next element
	//Here is 9
	ElemType num3, e3;
	printf("Enter the element for which you want to get the next element: ");
	scanf(DATAFMT, &num3);
	if(NextElem(L, num3, e3)) {
		printf("The next elem of ");
		printf(DATAFMT, num3);
		printf(" is ");
		printf(DATAFMT,  e3);
		printf(".\n\n");
	}
	else if(NextElem(L, num3, e3) == -3) {
		printf("The elem ");
		printf(DATAFMT, num3);
		printf(" dosen't exist!\n\n");
	}
	else {
		printf("The elem %d doesn't have next elem.\n\n", num3);
	}

	//Input the element and the location you want to insert
	//Here is 18 and 6
	int num4;
	ElemType e4;
	printf("Enter the element you want to insert: ");
	scanf(DATAFMT, &e4);
	printf("Enter the location you want to insert: ");
	scanf("%d", &num4);
	printf("Insert elem %d to postion %d...\n", e4, num4);
	ListInsert(L, num4, e4);
	ListTraverse(L, visit);
	printf("\n");

	//Input the number of the element you want to delete
	//Here is 2
	int num5;
	printf("Enter the number of the element you want to delete: ");
	scanf("%d", &num5);
	ElemType e5;
	printf("Prepare delete the No.%d elem...\n", num5);
	ListDelete(L, num5, e5);
	printf("The delete elem is ");
	printf(DATAFMT, e5);
	printf(".\n");
	ListTraverse(L, visit);
	printf("\n");

	//Destroy the list
	printf("Prepare destroy the list...\n");
	if(DestroyList(L)) {
		printf("List is destroyed!\n");
	}
	else {
		printf("List is not destroyed!\n");
	}

    //Use unionList Methods
	List La1, Lb1;
	InitList(La1);
	InitList(Lb1);

	InputList(La1, 5);
	ListTraverse(La1, visit);
	InputList(Lb1, 5);
	ListTraverse(Lb1, visit);

	printf("\nUnion List La1 and Lb1...\n");
	unionList(La1, Lb1);
	ListTraverse(La1, visit);
	printf("\n");

	//Use MergeList Methods
	List La2, Lb2, Lc;
	InitList(La2);
	InitList(Lb2);

	InputList(La2, 5);
	ListTraverse(La2, visit);
	InputList(Lb2, 5);
	ListTraverse(Lb2, visit);

	printf("\nMerge List La2 and Lb2...\n");
	MergeList(La2, Lb2, Lc);
	ListTraverse(Lc, visit);

	return 0;
}
实现结果如下:

在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/873924.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

11大排序的原理讲解和Python源码剖析

排序算法 【谁教你这么剪的 | 11大排序的原理讲解和Python源码剖析】 https://www.bilibili.com/video/BV1Zs4y1X7mN/?share_sourcecopy_web&vd_sourceed4a51d52f6e5c9a2cb7def6fa64ad6a 稳定&#xff1a;如果a原本在b前面&#xff0c;而ab&#xff0c;排序之后a仍然在b…

金士顿NV2 2TB假固态硬盘抢救记,RL6577/RTS5765DL量产工具,RTS5765DL+B47R扩容开卡修复

之前因为很长时间不买固态硬盘&#xff0c;没注意到NVME的固态盘也有了假货和扩容盘&#xff0c;花200多块买了个2TB的金士顿NV2固态硬盘&#xff0c;我原本以为NV1的假货最多是用黑片冒充正片&#xff0c;结果没想到NV2居然有扩容的。后来发现是扩容盘的时候&#xff0c;已经过…

亿发进销存一体化解决方案:数据互联互通,优化企业全局管理-下

亿发软件凭借对产品、市场、业务的深入理解&#xff0c;在进销存基础上进行了延伸&#xff0c;推出多终端、一体化的“进销存管理系统”多元产品矩阵。在技术上实现电脑端、手机端、PDA端、零售端、商家版以及小程序商城的多终端无缝对接&#xff0c;保障企业业务的连贯性和效率…

Win10安装.net FrameWork3.5失败解决方法

win10安装.net FrameWork3.5失败解决方法 已经好久没有来投稿了,实在最近业务缠身,忙的焦头烂额(呵~多么伟大的牛马) 但最近开发使用windows11实在是拉胯的不行,升级完就后悔,所以就一怒之下,重装了win10 可是,好家伙,我重装完遇到一个问题,就是在使用.Net Framework3.5,按照Mi…

Zynq7020 SDK 初学篇(4)- PL 端 GPIO

1.开发背景 基于 PS 端 GPIO 的基础上&#xff0c;如何调用 PL 端 GPIO 的输入输出 2.开发需求 PL 端按键控制 PL 端 LED 3.开发环境 Zynq7020 Vivado2017.4 4.实现步骤 4.1 设计配置 这里设置 PIO 数量 3 个 由于 PL 端不像 PS 端一样绑定 GPIO&#xff0c;所以需要对上面…

C++:拷贝构造函数、赋值运算符重载

目录 一、拷贝构造函数 拷贝构造的特点 二、赋值运算符重载 2.1 运算符重载 2.2 赋值运算符重载 赋值运算符重载的特点 一、拷贝构造函数 如果一个构造函数的第一个参数是自身类类型的引用&#xff0c;且任何额外的参数都有默认值&#xff0c;则此构造函数也叫做拷贝构造…

【Python篇】matplotlib超详细教程-由入门到精通(上篇)

文章目录 第一部分&#xff1a;基础概念与简单绘图1.1 matplotlib 简介1.2 创建第一个折线图1.3 图表的基本组成元素 第二部分&#xff1a;图表样式与修饰2.1 修改图表样式2.2 添加图例2.3 调整坐标轴与刻度 第三部分&#xff1a;绘制不同类型的图表3.1 散点图 (Scatter Plot)3…

JVM 调优篇2 jvm的内存结构以及堆栈参数设置与查看

一 jvm的内存模型 2.1 jvm内存模型概览 二 实操案例 2.1 设置和查看栈大小 1.代码 /*** 演示栈中的异常:StackOverflowError** author shkstart* create 2020 下午 9:08** 设置栈的大小&#xff1a; -Xss (-XX:ThreadStackSize)** -XX:PrintFlagsFinal*/ public class S…

关于ansible自动化运维工具

成长路上不孤单&#x1f60a;【14后&#xff0c;C爱好者&#xff0c;持续分享所学&#xff0c;如有需要欢迎收藏转发&#x1f60a;&#x1f60a;&#x1f60a;&#x1f60a;&#x1f60a;&#x1f60a;&#x1f60a;&#xff01;&#xff01;&#xff01;&#xff01;&#xff…

Android SystemUI组件(05)状态栏-系统状态图标显示管理

该系列文章总纲链接&#xff1a;专题分纲目录 Android SystemUI组件 本章关键点总结 & 说明&#xff1a; 说明&#xff1a;本章节持续迭代之前章节的思维导图&#xff0c;主要关注下方 SystemBars分析中状态栏中的部分-系统状态图标显示&管理 即可。 1 系统状态图标显…

Error when attempting to add data source to Azure OpenAI api

题意&#xff1a;尝试向 Azure OpenAI API 添加数据源时出现错误 问题背景&#xff1a; My code is working for a call to Azure OpenAI when I dont have a datasource added. However, when I do add my datasource with the following parameters I get an error: 当我没…

Dubbo精要

1、为什么需要 Dubbo&#xff1f; 分布式系统中的服务调用和协调问题&#xff1a;在分布式系统中&#xff0c;服务之间的相互依赖会导致复杂的通信和协调问题。Dubbo提供了高效的服务调用和自动注册、发现等功能&#xff0c;使得构建分布式应用程序更加容易。服务治理和服务调…

LeetCode 热题 100 回顾5

干货分享&#xff0c;感谢您的阅读&#xff01;原文见&#xff1a;LeetCode 热题 100 回顾_力code热题100-CSDN博客 一、哈希部分 1.两数之和 &#xff08;简单&#xff09; 题目描述 给定一个整数数组 nums 和一个整数目标值 target&#xff0c;请你在该数组中找出 和为目标…

CentOS Stream 8中安装和使用 Docker

docker安装包-CSDN博客 〇、常用的docker命令 docker的作用&#xff1a; 快速进行软件的安装&#xff0c;便于软件环境的维护 docker的镜像: 压缩了指定软件的安装包的文件。使用镜像文件创建容器 docker的容器: 容器可以理解为就是一台小电脑。安装的linux系统&am…

C++入门基础篇

引言 说到编程语言常常听到的就是C语言C Java 。C语言是面向过程的&#xff0c;C是和Java是面向对象的&#xff0c;那么什么是面向对象呢&#xff1f;什么又是面向过程呢&#xff1f;C是什么&#xff1f;封装、继承、多态是什么&#xff1f;且听我絮絮叨叨。 C入门基础 1.命名…

SpringBoot OAuth2自定义登陆/授权页

背景 5 月份的时候&#xff0c;我实践并整理了一篇博客&#xff1a;SpringBoot搭建OAuth2&#xff0c;该博客完成之后&#xff0c;很长一段时间里我都有种意犹未尽的感觉。诚然&#xff0c;我把OAuth2搭起来了&#xff0c;各种场景的用例也跑通了&#xff0c;甚至源码也看了&am…

《花100块做个摸鱼小网站! 》第六篇—将小网站部署到云服务器上

⭐️基础链接导航⭐️ 服务器 → ☁️ 阿里云活动地址 看样例 → &#x1f41f; 摸鱼小网站地址 学代码 → &#x1f4bb; 源码库地址 一、前言 到这一篇我们终于把环境搭好&#xff0c;也做好了几个热搜小组件&#xff0c;为了让我们方便展示成果或者方便自己摸鱼&#xff0c…

2024最新!Facebook手机版和网页版改名教程!

Facebook作为全球最大的社交平台之一&#xff0c;允许用户自定义名字和昵称。在Facebook更新姓名可以帮助您更好的展现账号形象。本文将为您提供详细的步骤指导&#xff0c;帮助您在手机APP和网页版上轻松完成Facebook改名操作。 Facebook手机版改名 打开Facebook APP并登录账号…

DataGridView用法合集【精品】

目录 1.当前的单元格属性取得、变更 2.DataGridView编辑属性 3.DataGridView最下面一列新追加行非表示 4.判断当前选中行是否为新追加的行 5. DataGridView删除行可否设定 6. DataGridView行列不表示和删除 7. DataGridView行列宽度高度设置为不能编辑 8. DataGridView行…

SQL进阶技巧:如何利用SQL解决趣味赛马问题?| 非等值关联匹配问题

目录 0 问题描述 1 数据准备 2 问题分析 方法一:先分后合思想 方法2:非等值关联匹配 3 小结 0 问题描述 有一张赛马记录表,如下所示: create table RacingResults ( trace_id char(3) not null,race_date date not null, race_nbr int not null,win_name char(30) n…