题解 | #【模板】队列#
【模板】队列
https://www.nowcoder.com/practice/afe812c80ad946f4b292a26dd13ba549
import java.util.*;
// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int maxSize = Integer.parseInt(in.nextLine());
Queue que = new LinkedList();//队列实例化
while (in.hasNextLine()) {
String str = in.nextLine();
String[] strs = str.split(" ");
if ("push".equals(strs[0])) {
que.offer(strs[1]);
} else if ("pop".equals(strs[0])) {
if (que.size() > 0) {
System.out.println(que.poll());
} else {
System.out.println("error");
}
} else if ("front".equals(strs[0])) {
if (que.size() > 0) {
System.out.println(que.peek());
} else {
System.out.println("error");
}
}
}
}
}