解题思路:
注意事项:
参考代码:
import java.util.*; import java.math.*; public class Main { public static void main(String[] args){ Scanner sc=new Scanner(System.in); int n=sc.nextInt(),m=sc.nextInt(); TreeSet<Student> ts=new TreeSet<>(); for(int i=0;i<n;i++){ ts.add(new Student(sc.nextInt(),sc.nextInt())); } for(int i=0;i<m;i++){ ts.add(new Student(sc.nextInt(),sc.nextInt())); } Iterator lt=ts.iterator(); while(lt.hasNext()){ System.out.println(lt.next()); } } } class Student implements Comparable<Student>{ int number; int grade; public Student(int number,int grade){ this.number=number; this.grade=grade; } public int compareTo(Student s){ int num=this.number-s.number; return num==0?1:num; } public String toString(){ return number+" "+grade; } }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:519 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:789 |
众数问题 (C语言代码)浏览:3569 |
C语言训练-数字母 (C语言代码)浏览:610 |
这可能是一个假的冒泡法浏览:1071 |
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:549 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:548 |
【偶数求和】 (C语言代码)浏览:588 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:676 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:612 |