我是靠谱客的博主 文艺泥猴桃,这篇文章主要介绍【数据结构作业一】写出顺序表的结构体类型定义及查找、插入、删除算法,并以顺序表作存储结构,实现线性表的插入、删除,现在分享给大家,希望可以做个参考。

复制代码
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
#include <iostream> using namespace std; #define MAXSIZE 50 typedef int ElemType; typedef struct { ElemType *elem; int length; } SqList; bool CreateList(SqList &L) { int i; L.elem=new ElemType[MAXSIZE]; //分配空间 if (!L.elem) return false; cout<<"请输入线性表的长度,不能大于"<<MAXSIZE<<':'; cin>>L.length; cout<<"请输入表中元素:"; for(i=0;i<L.length;i++) cin>>L.elem[i]; } bool ListInsert(SqList &L,int i,ElemType e) { if(i<1||i>L.length+1) { cout<<"插入序号错! " ; return false; } if(L.length==MAXSIZE) { cout<<"表已满! " ;return false; } for(int j=L.length-1;j>=i-1;j--) L.elem[j+1]=L.elem[j]; L.elem[i-1]=e; L.length++; return true; } bool ListDelete(SqList &L,int i) { if((i<1)||(i>L.length)) { cout<<"删除序号错! " ; return false; } for(int j=i;j<=L.length-1;j++) L.elem[j-1]=L.elem[j]; --L.length; return true; } void print(SqList L) { int i; for(i=0;i<L.length;i++) if (i==0) cout<<'('<<L.elem[i]; else cout<<','<<L.elem[i]; cout<<')'<<endl; } int main() { SqList L; int i,x; ElemType e; cout<<"创建[1]"<<endl; cout<<"输出[2]"<<endl; cout<<"插入[3]"<<endl; cout<<"删除[4]"<<endl; cout<<"退出[0]"<<endl; cout<<"请输入你的选择:"; cin>>x; while(x) { switch(x) { case 1:CreateList(L); break; case 2:print(L);break; case 3:cout<<"请输入插入位置和待插入元素:"; cin>>i>>e; ListInsert(L,i,e) ; break; case 4:cout<<"请输入删除位置:"; cin>>i; ListDelete(L,i); break; case 0:break; default:cout<<"你的选择有错,请重新选择!" ; } cout<<"请输入你的选择:"; cin>>x; } return 0; }

最后

以上就是文艺泥猴桃最近收集整理的关于【数据结构作业一】写出顺序表的结构体类型定义及查找、插入、删除算法,并以顺序表作存储结构,实现线性表的插入、删除的全部内容,更多相关【数据结构作业一】写出顺序表内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部