[C++] 백준 10828 : 스택
#include <iostream>
#include <stack> // stl 스택
using namespace std;
int main(void){
int N, num;
stack<int> stack; // 스택 선언
string str;
scanf("%d", &N);
for(int i = 0; i < N; i++){
cin >> str;
if(str == "push"){
scanf("%d", &num);
stack.push(num);
} else if(str == "pop"){
if(stack.empty()){
printf("-1\n");
} else {
cout << stack.top() << endl;
stack.pop();
}
} else if(str == "size"){
cout << stack.size() << endl;
} else if(str == "empty"){
if(stack.empty()){
printf("1\n");
} else {
printf("0\n");
}
} else if(str == "top"){
if(stack.empty()){
printf("-1\n");
} else {
cout << stack.top() << endl;
}
}
}
return 0;
}
오늘의 키포인트
- c++은 stack 라이브러리를 가지고 잇다. 그걸 쓰면 바로바로 해결 완료
Author And Source
이 문제에 관하여([C++] 백준 10828 : 스택), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@lamknh/C-백준-10828-스택저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)