티스토리 뷰
순환 queue
1 2 3 4 5 6 7
2 3 4 5 6 7 1
3 4 5 6 7 1 2
4 5 6 7 1 2
...
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 | #include <iostream> #include <string> #include <queue> using namespace std; int main() { int x, y; queue<int> q; queue<int> res; cin >> x>> y; cout << '<'; for (int i = 0; i < x; i++) { q.push(i + 1); } for (int i = 0; i < x - 1; i++) { for (int j = 0; j < y - 1; j++) { q.push(q.front()); q.pop(); } cout << q.front() << ", "; q.pop(); } cout << q.front()<<'>'; } | cs |
'알고리즘 > 자료구조' 카테고리의 다른 글
BOJ)11655 ROT13 (0) | 2017.06.20 |
---|---|
BOJ)10820 문자열 분석 (0) | 2017.06.20 |
BOJ)10866 덱(deque) (0) | 2017.06.20 |
BOJ)1406 에디터 (0) | 2017.06.19 |
BOJ)10799 쇠막대기 (0) | 2017.06.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 코딩야학
- 스택
- 타일링
- BFS
- Fakebook
- 백준
- CustomCollectionViewCell
- dfs
- listview
- CollectionView
- XAML
- Add TapGesture
- 데이터 바인딩
- FEED
- BOJ
- Cell Animation
- command
- Grid
- UIView Animation
- Custom Cell
- 생활코딩
- MVVM
- WPF
- 그래프
- 문자열
- 객체
- DP
- 백준온라인
- C++
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함