
프로그래밍/Java
[자바 JAVA/알고리즘] 백준 10845번 : 큐
//GitHub https://github.com/vellimole0621 vellimole0621 - Overview vellimole0621 has 4 repositories available. Follow their code on GitHub. github.com 백준 10845번 : 큐 (문제 - https://www.acmicpc.net/problem/10845) 문제 설명 : 큐를 구현하라 // 10845번 큐 package S2209; import java.util.*; import java.io.*; public class Main { static int[] que = new int[10000]; static int size = 0; static int rear = -1; static i..