赞
踩
如果队列最前面的学生 喜欢 栈顶的三明治,那么会 拿走它 并离开队列。
否则,这名学生会 放弃这个三明治 并回到队列的尾部。
这个过程会一直持续到队列里所有学生都不喜欢栈顶的三明治为止。
给你两个整数数组 students 和 sandwiches ,其中 sandwiches[i] 是栈里面第 i 个三明治的类型(i = 0 是栈的顶部), students[j] 是初始队列里第 j 名学生对三明治的喜好(j = 0 是队列的最开始位置)。请你返回无法吃午餐的学生数量。
模拟然后遍历
class Solution { public int countStudents(int[] students, int[] sandwiches) { Queue<Integer> studentsQueue = new LinkedList<Integer>(); Queue<Integer> sandwichesQueue = new LinkedList<Integer>(); for(int a:students){ studentsQueue.add(a); } for(int a:sandwiches){ sandwichesQueue.add(a); } int i=300; while(i--!=0) { if (studentsQueue.peek() == sandwichesQueue.peek()) { studentsQueue.poll(); sandwichesQueue.poll(); } else { int a = studentsQueue.poll(); studentsQueue.add(a); } } return studentsQueue.size(); } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。