"C++ 큐"의 두 판 사이의 차이

(새 문서: ==개요== ;C++ queue ;C++ 큐 <syntaxhighlight lang='cpp' run> #include <iostream> #include <queue> using namespace std; void showq(queue<int> q) { queue<int> qq = q; while...)
 
35번째 줄: 35번째 줄:


==참고==
==참고==
* {{위키백과}}
* https://cplusplus.com/reference/queue/queue/
* {{위키낱말사전}}
* {{다음사전}}
* {{다음백과}}
* {{네이버사전}}
* {{네이버백과}}
* {{나무위키}}
* {{리브레위키}}


[[분류: C++ 큐]]
[[분류: C++ 큐]]

2023년 9월 9일 (토) 16:22 판

1 개요

C++ queue
C++ 큐
#include <iostream>
#include <queue>
using namespace std;

void showq(queue<int> q) {
    queue<int> qq = q;
    while (!qq.empty()) {
        cout << qq.front() << ' ';
        qq.pop();
    }
    cout << '\n';
}

int main() {
    queue<int> q;
    q.push(3);
    q.push(1);
    q.push(4);
    q.push(8);
    
    showq(q); // 3 1 4 8
}

2 같이 보기

3 참고

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