C++ 스택 push()

Jmnote (토론 | 기여)님의 2023년 11월 8일 (수) 01:28 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

C++ 스택 push()
#include <iostream>
#include <stack>
using namespace std;

int main () {
  stack<int> s;
  s.push(1);
  s.push(2);
  while(!s.empty()) {
      cout << s.top() << endl;
      s.pop();
  }
}
#include <iostream>
#include <stack>
#include <utility>
using namespace std;

int main () {
  stack<pair<int,int>> s;
  s.push(pair<int,int>(1,2));
  s.push(pair<int,int>(3,4));
  while(!s.empty()) {
      cout << s.top().first << ',' << s.top().second << endl;
      s.pop();
  }
}

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}