-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeek3#HW.cpp
78 lines (74 loc) · 1.24 KB
/
Week3#HW.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
#include <iostream>
#include <string>
using namespace std;
class node{
public:
int data;
node* next;
};
node *top = nullptr;
int s_size = 0;
bool Empty(){
if(!s_size){
return true;
}
else {
return false;
}
}
int Top(){
if(Empty()){
return -1 ;
}
else return top->data;
}
void Push(int data){
node* newNode = new node;
newNode->data = data;
newNode->next = NULL;
if (Empty()){
top = newNode;
}
else{
newNode->next = top;
top = newNode;
}
s_size++;
}
void Pop(){
if (Empty()){
cout << -1 <<endl;
}
else {
cout<< top->data << endl;
top = top->next;
}
s_size--;
}
int main() {
int cmdN;
cout<<"명령어 수를 입력하세요 "<<endl;
cin>>cmdN;
while(cmdN--){
string cmd;
int _data;
cin>>cmd;
if(cmd=="empty"){
if(Empty()){
cout<<1<<endl;
}
else
cout<<0<<endl;
}
else if(cmd=="top"){
cout<<Top();
}
else if(cmd=="push"){
cin>>_data;
Push(_data);
}
else if(cmd=="pop"){
Pop();
}
}
}