-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path2-3-1.c
58 lines (54 loc) · 994 Bytes
/
2-3-1.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
#include<stdio.h>
#include<stdlib.h>
typedef struct LNode{
int data;
struct LNode* next;
}LNode, *LinkList;
LinkList fun(LinkList L,int x){
if(L){
if(L->data==x){
LinkList p;
L->next=fun(L->next, x);
p=L; //注意内存泄露!!!
L=L->next;
free(p);
}else{
L->next=fun(L->next,x);
}
}
return L;
}
int main(){
////////////////////////////////////////////////////////////
////////////////////建立链表////////////////////////////////
LinkList L,s;
int x=0;
L=(LinkList)malloc(sizeof(LNode));
L->next=NULL;
scanf("%d",&x);
while(x!=9999){
s=(LinkList)malloc(sizeof(LNode));
s->data=x;
s->next=L->next;
L->next=s;
scanf("%d",&x);
}
//带头结点:
//s=L->next;
//不带头结点:
L=L->next;
s=L;
////////////////////////////////////////////////////////////
//函数调用:返回链表
scanf("%d",&x);
L=fun(L,x);
s=L;
//打印链表:
while(s){
printf("%d ",s->data);
s=s->next;
}
free(s);
free(L);
return 0;
}