C语言线性表(实现线性表里面的函数)
【摘要】
#include <stdio.h>
#include <stdlib.h>
#define KSIZE 10//定义常量:线性表的长度
#define FALSE 0
#d...
#include <stdio.h>
#include <stdlib.h>
#define KSIZE 10//定义常量:线性表的长度
#define FALSE 0
#define TRUE 1
/************************************************************************/
/* 线性表(linear list)
线性表是一个相当灵活的数据结构,它的长度可以根据需要增长和缩短,即对线性表的数据元素不仅可以进行访问,还可以进行插入和删除等。
抽象定义的线性表如下:
ADT:Abstract Data Type 抽象数据类型
ADT LIST
L:LIST简称,即线性表本身
i:索引
e:element简称,即元素
cur_:current简称,即当前元素
pre_:previous简称,即前一个元素
next_:next,即下一个元素
visit:对元素访问的方式
InitList(&L) &L你可以想象成一个容器(数组) :初始化线性表
DestroyList(&L) &L你可以想象成一个容器(数组) :销毁线性表
ClearList(&L) &L你可以想象成一个容器(数组) :清空线性表
ListEmpty(L) L你可以想象成一个容器(数组) :线性表是否为空
ListLength(L) L你可以想象成一个容器(数组) :线性表中元素个数
GetElem(L, i, &e)L你可以想象成一个容器(数组) i代表索引 &e代表获取的元素是啥? :获取线性表中指定的元素
LocateElem(L, e, compare())L你可以想象成一个容器(数组),e代表想从数组里面查找有没有这个e元素 :给定元素获取第一次出现的索引位置
PriorElem(L, cur_ e, &pre_ e) 代表获取L代表数组 cur_e代表指定元素 &pre_ e代表指定元素的上一个元素 :给定元素获取其前一个元素
NextElem(L, cur_ e, &next_ e) 代表获取L代表数组 cur_e代表指定元素 &next_ e代表指定元素的下一个元素 :给定元素获取其后一个元素
ListInsert(&L, i, e)&L你可以想象成一个容器(数组) i指定位置 e插入的元素是啥? :将元素插入链表中指定位置
ListDelete(&L, i, &e)&L你可以想象成一个容器(数组) i指定元素 &e删除的元素是啥? :从链表中指定位置删除元素
ListTraverse(L, visit()) 遍历数组 :遍历元素
简单线性表--C语言实现
线性表组成类型:int数组*/
/************************************************************************/
/*---------------------------------------
InitList(&L);
DestroyList(&L);
ClearList(&L);
ListEmpty(L);
ListLength(L);
GetElem(L, i, &e);
LocateElem(L, e, compare());
ListInsert(&L, i, e);
ListDelete(&L, i, &e);
ListTraverse(L, visit());
PriorElem(L, cur_ e, &pre_ e);
NextElem(L, cur_ e, &next_ e);
-----------------------------------------*/
int count;
void InitList(int *list);//InitList(&L) &代表*
void DestroyList(int *list);
void ClearList(int *list);
int ListEmpty(int *list);
int ListLength(int *list);
int GetElem(int *list, int i, int *e);
int LocateElem(int *list, int e);
int ListInsert(int *list, int i, int e);
int ListDelete(int *list, int i, int *e);
void ListTraverse(int *list);
int main(void)
{
int arr[KSIZE];
int e = 0;
InitList(arr);
ListInsert(arr, 0, 5);
ListInsert(arr, 0, 8);
ListInsert(arr, 1, 7);
ListTraverse(arr);
ListDelete(arr, 0, NULL);
ListTraverse(arr);
GetElem(arr, 1, &e);
printf("e = %d\n", e);
printf("5的索引是%d\n", LocateElem(arr, 5));
ClearList(arr);
if(ListEmpty(arr))
{
printf("线性表为空\n");
}
else
{
printf("线性表不为空\n");
}
printf("线性表的长度为%d\n", ListLength(arr));
DestroyList(arr);
system("pause");
return 0;
}
void InitList(int *list)// &L你可以想象成一个容器(数组) :初始化线性表
{
int i = 0;
count = 0;
for(i = 0; i < KSIZE; i++)//遍历线性表,赋值为0,相当于初始化
{
list[i] = 0;
}
}
void DestroyList(int *list)
{}
void ClearList(int *list)//&L你可以想象成一个容器(数组) :清空线性表
{
int i = 0;
count = 0;
for(i = 0; i < KSIZE; i++)
{
list[i] = 0;//和初始化一样,相当于清空线性表
}
}
int ListEmpty(int *list)//L你可以想象成一个容器(数组) :线性表是否为空
{
if(count == 0)//判断线性表是否为空,如果==0代表为空,就为true.代表是的,为空!
{
return TRUE;
}
else
{
return FALSE;
}
}
int ListLength(int *list)//返回线性表的长度(看这里,你会懂)#define KSIZE 10 int arr[KSIZE] ListLength(arr)
{
return count;
}
int GetElem(int *list, int i, int *e)//L你可以想象成一个容器(数组) i代表索引 &e代表获取的元素是啥? :获取线性表中指定的元素
{
if(i < count && i >= 0)//索引必须大于或者等于0,因为索引是从零开始的。 i必须小于count,因为不能大过数组
{
*e = list[i];//获取的元素在索引1的位置,赋值给*e,代表*e哪里知道获取哪一个元素
return TRUE;
}
else
{
return FALSE;
}
}
int LocateElem(int *list, int e)//L你可以想象成一个容器(数组),e代表想从数组里面查找有没有这个e元素 :给定元素获取第一次出现的索引位置
{
int i = 0;
for(i = 0; i < count; i++)//遍历线性表数组,
{
if(list[i] == e)//如果等于e这个元素的数组元素,就输出其索引位置.
{
return i;
}
}
return -1;
}
/************************************************************************/
/*
-------------------------
| 0 | 1 | 2 | 3 | 4 | |
-------------------------
*/
/************************************************************************/
int ListInsert(int *list, int i, int e)//&L你可以想象成一个容器(数组) i指定位置 e插入的元素是啥? :将元素插入链表中指定位置
{
if(i <= count && i >= 0)//为什么(i <= count,因为插入的位置要+1啊
{
int k = 0;
for(k = count-1; k >= i; k--)
{
list[k+1] = list[k];//以上是所有的元素往后退一位
}
list[i] = e;//然后e代表list[0]了呀
count++;//然后count++代表又满了,又的++count又扩大
return TRUE;
}
else
{
return FALSE;
}
}
int ListDelete(int *list, int i, int *e)//&L你可以想象成一个容器(数组) i指定元素 &e删除的元素是啥? :从链表中指定位置删除元素
{
if(i < count && i >= 0)//删除不用扩大空间
{
int k = 0;
if(e != NULL)//e赋值给*e代表*e是要删除的元素是啥?
{
*e = list[i];
}
for(k = i; k < count - 1; k++)//往前进一步
{
list[k] = list[k+1];
}
count--;//然后count--,代表删除成功了呀
return TRUE;
}
else
{
return FALSE;
}
}
void ListTraverse(int *list)
{
int i = 0;
for(i = 0; i < count; i++)
{
printf("%d ", list[i]);//遍历元素输出即可
}
printf("\n");
}
- 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
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
文章来源: blog.csdn.net,作者:贵哥的编程之路(热爱分享),版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/qq_37805832/article/details/124743900
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)