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 | 31 |
Tags
- DP문제
- DP
- BFS
- 초소형머신러닝
- bfs문제
- 코테
- 포스코 교육
- tinyml
- 자료구조
- 삼성코딩테스트
- 삼성코테
- 딥러닝
- 다이나믹프로그래밍
- dfs문제
- sort
- tflite
- 영상처리
- 포스코 AI교육
- dfs
- 코테 문제
- 삼성역량테스트
- 그리디
- 알고리즘
- 포스코 ai 교육
- TensorFlow Lite
- 컴퓨팅사고
- MCU 딥러닝
- 코딩테스트
- 임베디드 딥러닝
- 삼성역테
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 |