정수를 저장하는 스택을 구현한 다음, 입력으로 주어지는 명령을 처리하는 프로그램을 작성하시오.
명령은 총 다섯 가지이다.
첫째 줄에 주어지는 명령의 수 N (1 ≤ N ≤ 10,000)이 주어진다. 둘째 줄부터 N개의 줄에는 명령이 하나씩 주어진다. 주어지는 정수는 1보다 크거나 같고, 100,000보다 작거나 같다. 문제에 나와있지 않은 명령이 주어지는 경우는 없다.
각각의 명령어로 string으로 불러온 뒤 문자열에 따라 그에 맞는 함수를 작성하면 된다.
이 문제를 풀 때 핵심은 pop_idx라고 가장 마지막으로 스택에 저장된 정보가 위치한 인덱스를 기록 하는 변수를 이용하는 것이다. 이 위치 하나만 push할 때 기록하면 pop, size, empty, top에서 모두 사용 가능하다.
#include <iostream>
using namespace std;
int n, stack[10000] = {}, pop_idx = -1;
void push(int number){
for(int i = 0; i <n; i++){
if(stack[i]==0){
stack[i] = number;
pop_idx = i;
break;
}
else continue;
}
return;
}
void pop(){
if(pop_idx == -1) cout << -1 << "\\n";
else{
cout<< stack[pop_idx] << "\\n";
stack[pop_idx] = 0;
pop_idx--;
}
return;
}
void size(){
cout << pop_idx+1 << "\\n";
return;
}
void empty(){
if(pop_idx == -1) cout << 1 <<"\\n";
else cout << 0 <<"\\n";
return;
}
void top(){
if(pop_idx == -1) cout << -1 <<"\\n";
else{
cout<< stack[pop_idx] << "\\n";
}
return;
}
int main(void){
cin >> n;
for(int i = 0; i < n; i++){
string temp;
cin >> temp;
if(temp == "push"){
int number;
cin >> number;
push(number);
}
else if(temp == "pop") pop();
else if(temp == "size") size();
else if(temp == "empty") empty();
else if(temp == "top") top();
}
}