BOJ10828
BOJ 10828 스택
문제
코드
#include <iostream>
#include <stack>
using namespace std;
stack<int> st;
void push(int x)
{
st.push(x);
}
int pop()
{
if (st.empty())
return -1;
else
{
int tmp = st.top();
st.pop();
return tmp;
}
}
int top()
{
if (st.empty())
return -1;
else
return st.top();
}
int size()
{
return st.size();
}
int empty()
{
if (st.empty())
return 1;
else
return 0;
}
int main(int argc, char const *argv[])
{
cin.tie(NULL);
ios::sync_with_stdio(false);
int n, num;
string str;
cin >> n;
for (int i = 0; i < n; i++)
{
cin >> str;
if (str == "push")
{
cin >> num;
push(num);
}
else if (str == "top")
{
cout << top() << '\n';
}
else if (str == "size")
{
cout << size() << '\n';
}
else if (str == "empty")
{
cout << empty() << '\n';
}
else if (str == "pop")
{
cout << pop() << '\n';
}
}
return 0;
}
- 조건문으로만 끝내려고 하다가 함수를 만들어서 해보고 싶었다. 🤨
Author And Source
이 문제에 관하여(BOJ10828), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@aksel26/BOJ10826저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)