"C++ 스택 push()"의 두 판 사이의 차이

 
13번째 줄: 13번째 줄:
   while(!s.empty()) {
   while(!s.empty()) {
       cout << s.top() << endl;
       cout << s.top() << endl;
      s.pop();
  }
}
</syntaxhighlight>
<syntaxhighlight lang='cpp' run>
#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();
       s.pop();
   }
   }

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 }}