-
Notifications
You must be signed in to change notification settings - Fork 6
/
link_list_s.c
218 lines (218 loc) · 5.74 KB
/
link_list_s.c
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
#include <stdio.h>
/*
该文件代码用于实现单链表
created time:2020.07.24
@Author:Jeaten
@E-mail:ljt_IT@163.com
*/
typedef struct Node{
int data;
struct Node *next;
}node;
node *head, *ptr;
void main(){
init();
int choice=8,num;
while(choice!=0){
printf("+----链表操作系统----+\t\t\n");
printf("|\t1.插入\t |\n");
printf("|\t2.删除\t |\n");
printf("|\t3.查找\t |\n");
printf("|\t4.展示\t |\n");
printf("|\t0.退出\t |\n");
printf("+--------------------+\t\t\n");
printf("请出入您的选择:\n");
scanf("%d",&choice);
switch(choice){
case 1:
insert_link();//插入操作
break;
case 2:
delete_link(head);//删除操作
break;
case 3:
printf("请出入您要查找的数:\n");
scanf("%d",&num);
query_link(head,num);//查找操作
break;
case 4:
print_link(head);
break;
case 0:
exit(0);
break;
default:
printf("输入有误,请重新输入!\n");
break;
}
}
}
void init(){//初始化
ptr=(node *)malloc(sizeof(node *));
ptr->data=1;
ptr->next=NULL;
head=ptr;
ptr=(node *)malloc(sizeof(node *));
ptr->data=2;
head->next=ptr;
ptr->next=NULL;
ptr=(node *)malloc(sizeof(node *));
ptr->data=3;
head->next->next=ptr;
ptr->next=NULL;
ptr=(node *)malloc(sizeof(node *));
ptr->data=4;
head->next->next->next=ptr;
ptr->next=NULL;
}
void print_link(node *ptr){
int count=1;
if (ptr==NULL){
printf("链表为空!\n");
}
else{
while(ptr!=NULL){
printf("%d-th结点的值:%d\n",count,ptr->data);
ptr=ptr->next;
count++;
}
}
}
void insert_link(){//插入操作
int data=0;
int choice;
printf("请输入插入位置(1:开头,2:中间,3:结尾):\n");
scanf("%d",&choice);
switch(choice){
case 1://从开始插入
printf("请输入要插入的数据:");
scanf("%d",&data);
ptr=(node *)malloc(sizeof(node *));
if (ptr){
ptr->data=data;//为插入结点赋值
ptr->next=head;//将新结点链接到原始结点的头上
head=ptr;//更换链表的头
printf("结点已插入!\n");
}else{
printf("申请内存失败!");
}
break;
case 2://从中间插入
printf("请输入要插入的数据:");
scanf("%d",&data);
ptr=(node *)malloc(sizeof(node *));
ptr->data=data;
if(ptr){
int loc,i;
node *temp=head;
printf("请输入要插入的位置(插入该位置之后):");
scanf("%d",&loc);
for(i=0;i<loc-1;i++){
if(temp){
temp=temp->next;
}else{
printf("该位置不存在(可能是由于位置长度大于链表长度导致的!\n");
return;
}
}
ptr->next=temp->next;
temp->next=ptr;
printf("结点已插入!\n");
}else{
printf("申请内存失败!");
}
break;
case 3://从结尾插入
printf("请输入要插入的数据:");
scanf("%d",&data);
ptr=(node *)malloc(sizeof(node *));
ptr->data=data;
if (ptr){
if(head){//链表不为空
node *temp=head;
while(temp->next!=NULL){
temp=temp->next;
}
temp->next=ptr;
ptr->next=NULL;
printf("结点已插入!\n");
}else{//链表为空
ptr->next=NULL;
head=ptr;
}
}else{
printf("申请内存失败!");
}
printf("结点已插入!\n");
break;
default:
printf("输入有误,请重新输入!");
insert_link();
break;
}
}
void delete_link(){//删除操作
int loc;
int i;
node *p;
printf("请输入您要删除结点的位置(1:第一个,-1:最后一个,其他:中间位置):\n");
scanf("%d",&loc);
switch(loc){
case 1:
ptr=head;
head=ptr->next;
free(ptr);
printf("第一个结点删除成功!\n");
break;
case -1:
if(head->next==NULL){
ptr=head;
head=NULL;
free(ptr);
}else{
ptr=head;
while(ptr->next!=NULL){
p=ptr;
ptr=ptr->next;
}
p->next=NULL;
free(ptr);
}
printf("最后一个结点删除成功!\n");
break;
default:
ptr=head;
for(i=0;i<loc-1;i++){
p=ptr;
ptr=ptr->next;
if(ptr==NULL){
printf("该位置不存在(可能是由于位置长度大于链表长度导致的!\n");
return;
}
}
p->next=ptr->next;
free(ptr);
printf("%d-th个结点删除成功!\n",loc);
break;
}
}
void query_link(node *ptr,int data){//查找操作
int count=1;
int flag=0;
if (ptr==NULL){
printf("链表为空!\n");
}
else{
while(ptr!=NULL){
if(ptr->data==data){
flag=1;
printf("该数字在链表中的第%d个位置...\n",count);
}
ptr=ptr->next;
count++;
}
if (!flag){
printf("该数字不在链表中!\n");
}
}
}