-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconcatenate.cpp
130 lines (119 loc) · 1.75 KB
/
concatenate.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
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
#include <iostream>
using namespace std;
const int maxsize =100;
template <class t>
class Sack {
int top;
t item[maxsize];
public :
Sack ():top (-1){}
bool push (t Element)
{
if (top>=maxsize-1 )
{
return 0;
}
else{
top++;
item[top] = Element;
return 1;
}
}
bool isEmpty ()
{
if (top<0)
return true;
else return false;
}
void pop ()
{
if (isEmpty())
cout<<"the stack is empty "<<endl;
else
top--;
}
void pop (t&Element)
{
if (isEmpty())
cout<<"the stack is empty "<<endl;
else
Element = item [top];
top--;
}
t getTOP ()
{
if (isEmpty())
cout<<"the stack is empty "<<endl;
else
return item[top];
}
t getTOP (t&element)
{
if (isEmpty())
cout<<"the stack is empty "<<endl;
else
element=item[top];
}
void print ()
{
cout<<" ______"<<endl;
for(int i=top; i>=0 ; i--)
{
cout<<" | "<<item[i]<<" |"<<endl;
cout<<" ______"<<endl;
}
}
};
template <class t>
bool Concinate (Sack<t>&s1 ,Sack<t>&s2)
{
t Item ;
Sack <t> nwTemp;
while (!s2.isEmpty())
{
s2.getTOP(Item);
nwTemp.push(Item);
s2.pop();
}
int c=0;
while (!nwTemp.isEmpty())
{
nwTemp.getTOP(Item);
if (s1.push(Item)==0){
for (int i=0 ;i<c; i++ )
{
s1.getTOP(Item);
nwTemp.push(Item);
s1.pop();
}
while (!nwTemp.isEmpty())
{
nwTemp.getTOP(Item);
s2.push(Item);
nwTemp.pop();
}
return false;
}
else {
c++;
nwTemp.pop();
}
}
}
int main(int argc, char *argv[])
{
Sack <int>s1 ;
Sack <int>s2;
s1.push(10);
s1.push(10);
s1.push(10);
s1.push(10);
s2.push(20);
s2.push(20);
s2.push(20);
s2.push(20);
// s1.print();
Concinate(s1,s2);
s1.print();
return 0;
}