当前位置:   article > 正文

线性表12种基本操作

线性表12种基本操作

线性表12种基本操作(C语言)
VS2019制作


1.构造线性表
2. 重置该表
3. 判断是否为空表
4. 返回元素个数
5. 返回指定数值
6. 判断元素
7. 返回前驱
8. 返回后继
9. 插入元素
10. 删除元素
11.调用函数
12. 销毁线性表
13. 打印当前线性表


一、具体代码

代码如下(示例):

#include<stdio.h>
#include <stdlib.h>
#define TRUE  1
#define FALSE 0
#define OK    1
#define ERROR 0
#define LIST_INIT_SIZE 100
#define LISTINCREMENT  10
#define INFEASIBLE -1
#define OVERFLOW   -2
typedef int ElemType;
typedef struct {
	ElemType *elem; //存储空间基址
	int length;   //当前长度
	int listsize;//当前分配的存储容量
}SqList;
//构造线性表
int InitList(SqList *L) {
	L->elem = (ElemType *)malloc(LIST_INIT_SIZE * sizeof(ElemType));//存储分配失败
	if (!L->elem)
		exit(OVERFLOW);//空表长度初始化为0;
	L->length = 0;//存储的初始容量为初始分配空间
	L->listsize = LIST_INIT_SIZE;
	return OK;
}
//销毁线性表
int Desttroylist(SqList *L) {
	free(L->elem);
	L->elem = NULL;
	L->length = 0;
	L->listsize = 0;
	return OK;
}
//重置线性表
int ClearList(SqList *L) {
	free(L->elem);
	L->elem = (ElemType*)malloc(LIST_INIT_SIZE * sizeof(ElemType));
	if (!L->elem)
		exit(OVERFLOW);
	L->length = 0;
	L->listsize = LIST_INIT_SIZE;
	return OK;
}
//判断线性表是否为空
int EmptyList(SqList L) {
	return L.length == 0 ? TRUE : FALSE;
}
//返回线性表的长度
int ListLength(SqList L) {
	return L.length;
}
//返回第i个数据元素的值
int GetElem(SqList L, int i) {
	if (i < 1 || i > L.length)
		return ERROR;
	return L.elem[i - 1];
}
//判断元素
int LocateElem(SqList L, ElemType e) {
	for (int i = 0; i < L.length; i++) {
		if (L.elem[i] == e)
			return i + 1;
	}
	return ERROR;
}
//返回前驱
int PreElem(SqList L, int i) {
	if (i <= 1 || i > L.length)
		return ERROR;
	return L.elem[i - 2];
}
//返回后继
int NextElem(SqList L, int i) {
	if (i < 1 || i >= L.length)
		return ERROR;
	return L.elem[i];
}
//在前面插入新数据元素
int ListInsert(SqList *L, int i, ElemType e) {
	if (i < 1 || i > L->length + 1)
		return ERROR;
	for (int j = L->length; j >= i; j--) {
		L->elem[j] = L->elem[j - 1];
	}
	L->elem[i - 1] = e;
	//	线性表长度加一
	L->length++;
	return OK;
}
//删除第i个数据元素
int ListDetele(SqList *L, int i) {
	if (i < 1 || i > L->length)
		return ERROR;
	ElemType e = L->elem[i - 1];
	for (int j = L->length - i; j > 0; j--) {
		L->elem[L->length - j - 1] = L->elem[L->length - j];
	}
	L->length--;
	return e;
}
//调用visit()
int ListTraverse(SqList L, void(*vi)(ElemType *))
{ 
	ElemType *p;
	int i;
	p = L.elem;
	for (i = 1; i <= L.length; i++)
		vi(p++);
	printf("\n");
	return OK;
}
 //打印
 int ListPrint(SqList L) {
	 for (int i = 1; i <= L.length; i++) {
		 printf("%d ", GetElem(L, i));
	 }
	 return OK;
 }
int main() {
	
	SqList L;
	printf("*********************************\n");
	printf("*******      线 性 表      ******\n");
	printf("*******  1. 创建一个线性表 ******\n");
	printf("*******  2. 重置该表       ******\n");
	printf("*******  3. 判断是否为空表 ******\n");
	printf("*******  4. 返回元素个数   ******\n");
	printf("*******  5. 返回指定数值   ******\n");
	printf("*******  6. 判断元素       ******\n");
	printf("*******  7. 返回前驱       ******\n");
	printf("*******  8. 返回后继       ******\n");
	printf("*******  9. 插入元素       ******\n");
	printf("******* 10. 删除元素       ******\n");
	printf("******* 11. 调用函数       ******\n");
	printf("******* 12. 销毁线性表     ******\n");
	printf("******* 13. 打印当前线性表 ******\n");
	printf("*********************************\n\n");
	printf("---------------------------------\n\n");
	InitList(&L);
	
	while(1){
		int num1, placenum;
		int datanum,numvalue;
		printf("请输入对应指令:\n");
	    scanf_s("%d", &num1);
		
		switch(num1)
		{
	    
		case 1://创建线性表
			printf("请输入元素个数:\n");
			scanf_s("%d", &datanum);
			printf("请输入线性表元素:\n");
			for (int i = 1,a; i < datanum+1; i++) {
				scanf_s("%d", &a);
				ListInsert(&L,i,a);
			}
			printf("您输入的线性表:\n");
			ListPrint(L);
			printf("\n");
			break; 
		case 2://重置
			ClearList(&L);
			break;
		case 3://判断
			printf("%d\n",EmptyList(L));
			break;
		case 4://返回元素个数
			printf("元素个数:%d\n",ListLength(L));
			break;
		case 5://返回指定数值
			printf("请输入位置:\n");
			scanf_s("%d", &placenum);
			printf("第%d个元素:%d\n",placenum,ListDetele(&L, placenum));
			break;
		case 6://判断元素
			printf("请输入一个值:\n");
			scanf_s("%d", &numvalue);
			printf("第一个与%d值相等的位置:%d\n",numvalue,LocateElem(L, numvalue));
			break;
		case 7://返回前驱
			printf("请输入位置:\n");
			scanf_s("%d", &placenum);
			printf("第%d个元素的前驱:%d\n",placenum,PreElem(L, placenum));
			break;
		case 8://返回后继
			printf("请输入位置:\n");
			scanf_s("%d", &placenum);
			printf("第%d个元素的后继:%d\n",placenum,NextElem(L, placenum));
			break;
		case 9://插入元素
			printf("请输入位置:\n");
			scanf_s("%d", &placenum);
			printf("请输入插入的值:\n");
			scanf_s("%d", &numvalue);
			ListInsert(&L, placenum, numvalue);
			printf("当前线性表为:");
			ListPrint(L);
			printf("\n");
			break;
		case 10://删除元素
			printf("请输入位置:\n");
			scanf_s("%d", &placenum);
			printf("删除的元素:%d\n",ListDetele(&L, placenum));
			break;
		case 11:
			break;
		case 12://销毁
			Desttroylist(&L);
			break;
		case 13://打印
			ListPrint(L);
			printf("\n");
			break;
		default:
			break;
		}
	} 
	
	return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221

二.运行结果

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/529433
推荐阅读
  

闽ICP备14008679号