티스토리 뷰
순환 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
- 데이터 바인딩
- DP
- 그래프
- dfs
- UIView Animation
- BOJ
- XAML
- CollectionView
- 백준온라인
- 생활코딩
- 타일링
- CustomCollectionViewCell
- Fakebook
- FEED
- C++
- 스택
- 코딩야학
- Cell Animation
- BFS
- 문자열
- 객체
- listview
- Grid
- Custom Cell
- Add TapGesture
- command
- MVVM
- WPF
- 백준
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함