Recent Posts
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
- terminal
- tolerated
- Value too long for column
- 개성국밥
- JanusGateway
- 겨울 부산
- table not found
- kotlin
- taint
- k8s #kubernetes #쿠버네티스
- 코루틴 빌더
- preemption #
- JanusWebRTCGateway
- vfr video
- 코루틴 컨텍스트
- VARCHAR (1)
- mp4fpsmod
- 달인막창
- JanusWebRTC
- PersistenceContext
- 자원부족
- python
- PytestPluginManager
- pytest
- 티스토리챌린지
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- JanusWebRTCServer
- Spring Batch
- 깡돼후
- 오블완
Archives
너와 나의 스토리
[BOJ] 1158 요세푸스 문제 - 이중 연결 리스트(Doubly Linked List), 큐(Queue) 구현 본문
Algorithm/자료구조 구현
[BOJ] 1158 요세푸스 문제 - 이중 연결 리스트(Doubly Linked List), 큐(Queue) 구현
노는게제일좋아! 2020. 2. 19. 00:04반응형
문제: https://www.acmicpc.net/problem/1158
이중 연결 리스트(Doubly Linked List) 소스 코드:
더보기
#include <iostream>
using namespace std;
int n, k;
class linkedlist {
public:
class node {
public:
int num;
node *right;
node *left;
node(int n) {
num = n;
left = NULL;
right = NULL;
}
};
node *head;
void insert() {
head = new node(1);
node *cur = head;
for (int i = 2; i <= n; i++) {
node *newone = new node(i);
cur->right= newone;
newone->left = cur;
cur = newone;
}
cur->right = head;
head->left = cur;
}
void print() {
int cnt = n;
node * cur = head;
cout << "<";
while (cnt) {
for (int i = 0; i < k-1; i++) {
cur = cur->right;
}
cnt--;
cout << cur->num;
if (cnt) cout << ", ";
cur->left->right = cur->right;
cur->right->left = cur->left;
cur = cur->right;
}
cout << ">";
}
};
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
linkedlist *list = new linkedlist();
cin >> n >> k;
list->insert();
list->print();
return 0;
}
큐(Queue) 소스 코드:
더보기
#include <iostream>
#define QSIZE 5500
using namespace std;
int n, k;
int q[QSIZE],f,r;
void insert(int num) {
q[r] = num;
r = (r + 1) % QSIZE;
}
void pop() {
f = (f +1) % QSIZE;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
cin >> n >> k;
for (int i = 1; i <= n; i++) insert(i);
cout << "<";
while (n) {
for (int i = 0; i < k-1; i++) {
insert(q[f]);
pop();
}
n--;
cout << q[f];
pop();
if (n) cout << ", ";
}
cout << ">";
return 0;
}
반응형
'Algorithm > 자료구조 구현' 카테고리의 다른 글
큌 소트 (Quick-Sort) 구현 (0) | 2020.04.20 |
---|---|
[BOJ] 2164 카드 2 - deque 구현 (0) | 2019.09.22 |
[BOJ] 10773 제로 (0) | 2019.09.22 |
[BOJ] 11279 최대 힙 - heap(priority_queue) 구현 (0) | 2019.09.01 |
[BOJ] 2252 줄 세우기 [리스트, 큐, 이중 벡터 구현] (0) | 2019.08.30 |
Comments