Notice
Recent Posts
Recent Comments
Link
할껀하고놀자
[알고리즘] 간단한 스택 사용(C++) 본문
728x90
#include <iostream>
#include<stack>
using namespace std;
int main(){
stack<int> st;
st.push(7);
st.push(5);
st.push(4);
st.pop();
st.push(6);
st.pop();
while (!st.empty()) {
cout << st.top() << " ";
st.pop();
}
return 0;
}
'[IT] > 알고리즘' 카테고리의 다른 글
[알고리즘] 간단한 dfs 구현 (C++) (0) | 2019.05.31 |
---|---|
[알고리즘] 간단한 bfs 구현 (C++) (0) | 2019.05.31 |
[알고리즘] 간단한 queue 구현(C++) (0) | 2019.05.31 |
[알고리즘] stl 정렬 알고리즘 사용하기. (C++) (0) | 2019.05.31 |
[알고리즘] 퀵 정렬 (0) | 2019.05.31 |
Comments