"C++ 큐 size()"의 두 판 사이의 차이

(새 문서: ==개요== ;C++ 큐 size() <syntaxhighlight lang='cpp' run> #include <iostream> #include <queue> using namespace std; int main() { queue<int> q; q.push(3); q.push(1);...)
 
22번째 줄: 22번째 줄:
* [[C++ size()]]
* [[C++ size()]]
* [[C++ 디큐 size()]]
* [[C++ 디큐 size()]]
* [[C++ 스택 size()]]


==참고==
==참고==

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

1 개요

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

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

2 같이 보기

3 참고

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