-
Notifications
You must be signed in to change notification settings - Fork 7
/
2-3-TwoLinkList-M.cpp
82 lines (80 loc) · 1.41 KB
/
2-3-TwoLinkList-M.cpp
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
#include<iostream>
using namespace std;
typedef struct LNode{
int data;
struct LNode* next;
}LNode, *LinkList;
void fun(LinkList &L,int x){
LinkList p=L->next,pre=L,q;
while(p){
if(p->data==x){
q=p;
p=p->next;
pre->next=p;
free(q);
}else{
pre=p;
p=p->next;
}
}
}
void fun_start(LinkList &L1,LinkList &L2){
//fun();
}
//带头结点
void build_list(LinkList &L){
LinkList s;
int x=0;
L=(LinkList)malloc(sizeof(LNode));
L->next=NULL;
cin>>x;
//头插法 懒得改尾插
while(x!=9999){
s=(LinkList)malloc(sizeof(LNode));
s->data=x;
s->next=L->next;
L->next=s;
cin>>x;
}
LinkList tmp,pre,now;
//原地逆转算法:pre置初值NULL,now为当前节点,为头结点下一节点,迭代。
//分析单个节点情况,tmp保存当前节点next,当前now的next指向pre,pre迭代为当前节点now
//now迭代为tmp
pre=NULL;
now=L->next;
while(now){
tmp=now->next;
now->next=pre;
pre=now;
now=tmp;
}
//带头结点
L->next=pre;
}
void print_list(LinkList &L){
//打印链表
//带头结点
LinkList s=L->next;
while(s){
cout<<s->data<<" ";
s=s->next;
}
cout<<endl;
LinkList p=L;
while(L){
p=L;
L=L->next;
free(p);
}
}
////////////////////////////////////////////////////
int main(){
LinkList l1,l2;
build_list(l1);
build_list(l2);
fun_start(l1,l2);
print_list(l1);
print_list(l2);
return 0;
}
/////////////////////////////////////////////////