public class Main01 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); Queue<Integer> queue = new LinkedList<>(); for (int i = 0; i < n; i++) { queue.add(scanner.nextInt()); } int[] out = new int[n]; for (int i = 0; i < n; i++) { out[i] = scanner.nextInt(); } int count = 0; for (int i = 0; i < n-1; i++) { if(out[i]!=queue.peek()){ count++; }else { queue.poll(); } } System.out.println(count); } } 大佬,这样写有什么问题呀。
点赞 4

相关推荐

10-18 13:01
已编辑
西安理工大学 C++
小米内推大使:建议技能还是放上面吧,hr和技术面试官第一眼想看的应该是技能点和他们岗位是否匹配
点赞 评论 收藏
分享
牛客网
牛客企业服务