UpDown Dev Story
공주 구하기 (Queue) 본문
아래 강의를 보면서 연습하고 기록하고 있습니다
문제
코드
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int inputLength = sc.nextInt();
int inputDeleteValue = sc.nextInt();
Queue<Integer> queue = new LinkedList<>();
for (int i = 0; i < inputLength; i++) {
queue.offer(i + 1);
}
int index = 1;
while (queue.size() > 1) {
if (index == inputDeleteValue) {
queue.poll();
index = 1;
} else {
queue.offer(queue.poll());
index++;
}
}
System.out.println(queue.poll());
}
}
'Algorithm' 카테고리의 다른 글
선택 정렬 (0) | 2021.07.07 |
---|---|
교육과정 설계 (Queue) (0) | 2021.07.07 |
후위식 연산 (Stack) (0) | 2021.07.06 |
아나그램 (HashMap) (0) | 2021.07.05 |
알고리즘 연습 - K번째 큰 수 ( TreeSet ) (0) | 2021.06.23 |
Comments