Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- MCU 딥러닝
- tflite
- 그리디
- 영상처리
- 자료구조
- 초소형머신러닝
- 삼성코딩테스트
- bfs문제
- 코딩테스트
- 코테 문제
- 포스코 교육
- 삼성역량테스트
- dfs
- 포스코 AI교육
- 딥러닝
- 알고리즘
- 컴퓨팅사고
- DP문제
- DP
- TensorFlow Lite
- 삼성역테
- sort
- dfs문제
- 포스코 ai 교육
- 코테
- 다이나믹프로그래밍
- 임베디드 딥러닝
- BFS
- tinyml
- 삼성코테
Archives
- Today
- Total
코딩뚠뚠
[기본문제풀이] queue 본문
반응형
풀이 일시 : 2020-08-05
큐 :
first in first out
dbstndi6316.tistory.com/27?category=953970
문제 :
queue를 선언하고 q.push q.pop 사용
풀이 :
#include <iostream>
#include <queue>
using namespace std;
int main() {
queue<int> q;
q.push(7);
q.push(5);
q.push(4);
q.pop();
q.push(6);
q.pop();
while (!q.empty()) {
cout << q.front() << ' ';
q.pop();
}
return 0;
}
반응형
'알고리즘 문제풀이 > 기본문제풀이' 카테고리의 다른 글
[기본문제풀이] union_find (0) | 2020.12.28 |
---|---|
[기본문제풀이] kruskal_algorithm (0) | 2020.12.28 |
[기본문제풀이] stack (0) | 2020.12.28 |
[기본문제풀이] counting_sort (0) | 2020.12.27 |
[기본문제풀이] insertion_sort (0) | 2020.12.27 |