-
Notifications
You must be signed in to change notification settings - Fork 7
/
3-1-4.cpp
87 lines (85 loc) · 1.57 KB
/
3-1-4.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
83
84
85
86
87
#include<iostream>
#include"3-1-SqStack.cpp"
using namespace std;
typedef struct LNode{
int data;
struct LNode* next;
}LNode, *LinkList;
//bug 笔记:因为在SqStack31中没有用引用型参数
//导致top没有值,出现莫名其妙的访问错误
//所以,访问错误也可能是由于未赋值的变量引起的
void fun(LinkList L,SqStack &s){
LinkList p=L->next;
int x=0;
for(;p!=NULL;p=p->next){
if(push(s,p->data)){
//bug笔记:由于top无值,报栈满
}else{
cout<<"error:push"<<endl;
return;
}
}
for(p=L->next;p;p=p->next){
if(pop(s,x)){
if(x!=p->data){
cout<<"false"<<endl;
return;
}
}else{
cout<<"error:pop"<<endl;
}
}
cout<<"true"<<endl;
return;
}
void fun_start(LinkList L1,LinkList &rear,SqStack &s){
fun(L1,s);
}
//带头结点
void build_list(LinkList &L,LinkList &rear){
LinkList s;
int x=0;
L=(LinkList)malloc(sizeof(LNode));
L->next=NULL;
rear=L;
cin>>x;
while(x!=9999){
s=(LinkList)malloc(sizeof(LNode));
s->data=x;
rear->next=s;
rear=rear->next;
cin>>x;
}
rear->next=NULL;
}
void print_list(LinkList &L){
//打印链表
//带头结点
LinkList s=L->next;
//while(s){
//双链表
while(s){
cout<<s->data<<" ";
s=s->next;
}
cout<<endl;
LinkList p=L,tmp=L;
while(L){
p=L;
L=L->next;
free(p);
}
}
////////////////////////////////////////////////////
int main(){
LinkList l1,l2,rear1,rear2;
SqStack s;
InitStack(s);
build_list(l1,rear1);
// build_list(l2);
fun_start(l1,rear1,s);
print_list(l1);
// print_list(l2);
return 0;
}
/////////////////////////////////////////////////