集合中的排序问题
昨晚做的一个习题
描述
现在给你两堆数,每个堆中有n个数。你的任务是把这两个堆并成一个堆,并把合并后的堆中的元素按从小到大的顺序输出。例如当n=5时,第一个堆是{1,2,3,4,5},第二个堆是{5,6,7,8,9},那么你就应该输出1 2 3 4 5 6 7 8 9。(一堆中可能有重复的数)
输入
第一行输入一个整数T(1≤T≤100),表示有T组测试数据。
每组数据先输入一个整数N(1≤N≤10),表示每个堆中元素的个数。然后输入N个整数A(0≤A<100),最后输入N个整数B(0≤B<100)。
输出
把合并后的堆中的元素按从小到大的顺序输出。
样例输入
2
5
1 2 3 4 5
5 6 7 8 9
6
18 88 43 5 10 78 
94 99 37 92 3 52 
样例输出
1 2 3 4 5 6 7 8 9 3 5 10 18 37 43 52 78 88 92 94 99用集合的排序方法 Collections.sort(); 及冒泡排序都能完美解决
将代码整理如下 :
public class Test6 {
 public static void main(String[] args) {
        int[] ins1 ={1,2,3,4,5};
        int[] ins2 ={5,6,7,8,9};
        changeShuZu(ins1,ins2);
        System.out.println("============");
        int[] ins3 ={18,88,43,5,10,78};
        int[] ins4 ={94,99,37,92,3,52};
        changeShuZu(ins3,ins4);
        }
    public static void changeShuZu(int[] ins1,int[] ins2){
//    	int[] arr = new int[length];
    	ArrayList<Integer> arr = new ArrayList<Integer>();
    	
    	for(int i=0;i<ins1.length;i++){  		
    			arr.add(ins1[i]);  		
    	}
    	for(int i=0;i<ins2.length;i++){  		
			arr.add(ins2[i]);  		
	    }
    	for(int i=0;i<ins1.length;i++){
    		for(int j=0;j<ins2.length;j++){
    			if(ins1[i]==ins2[j]){
    				arr.remove(i);
    			}
    		}
    	}
for (int i = 0; i < arr.size() - 1; i++) {
            for (int j = 1; j < arr.size() - i; j++) {
                Integer a;
                if ((arr.get(j - 1)).compareTo(arr.get(j)) > 0) { // 比较两个整数的大小
 
                    a = arr.get(j - 1);
                    arr.set((j - 1), arr.get(j));
                    arr.set(j, a);
                }
            }
        }
    	Collections.sort(arr); //
    	for(int i=0;i<arr.size();i++){
    		System.out.print(arr.get(i)+" ");
    	}
    }
}
另 整理下
对List集合中的元素进行排序
Collections对List集合中的数据进行排序
有时候需要对集合中的元素按照一定的规则进行排序,这就需要用到
Java中提供的对集合进行操作的工具类Collections,其中的sort方法
先看一个简单的例子:
- public static void main(String[] args) {
 - List<Integer> nums = new ArrayList<Integer>();
 - nums.add(3);
 - nums.add(5);
 - nums.add(1);
 - nums.add(0);
 - System.out.println(nums);
 - Collections.sort(nums);
 - System.out.println(nums);
 - }
 
输出结果:
[3, 5, 1, 0]
[0, 1, 3, 5]
稍微复杂的List里面放一个复杂的对象
- package core.java.collection.collections;
 - public class User implements Comparable<User>{
 - private int score;
 - private int age;
 - public User(int score, int age){
 - super();
 - this.score = score;
 - this.age = age;
 - }
 - public int getScore() {
 - return score;
 - }
 - public void setScore(int score) {
 - this.score = score;
 - }
 - public int getAge() {
 - return age;
 - }
 - public void setAge(int age) {
 - this.age = age;
 - }
 - @Override
 - public int compareTo(User o) {
 - int i = this.getAge() - o.getAge();//先按照年龄排序
 - if(i == 0){
 - return this.score - o.getScore();//如果年龄相等了再用分数进行排序
 - }
 - return i;
 - }
 - }
 - public static void main(String[] args) {
 - List<User> users = new ArrayList<User>();
 - users.add(new User(78, 26));
 - users.add(new User(67, 23));
 - users.add(new User(34, 56));
 - users.add(new User(55, 23));
 - Collections.sort(users);
 - for(User user : users){
 - System.out.println(user.getScore() + "," + user.getAge());
 - }
 - }
 
输出结果:
55,23
67,23
78,26
34,56
我们会发现sort(List<T>)方法中List中的T必须实现Comparable<T>接口,然后实现
compareTo()方法,该方法的返回值0代表相等,1表示大于,-1表示小于;为什么
在简单例子中没有看到实现Comparable接口呢?是因为Integer类其实自己已经实现
了Comparable接口,Java已经给我们做好了。
Collections提供的第二种排序方法sort(List<T> list, Comparator<? super T> c)
先看例子:
- package core.java.collection.collections;
 - public class Students {
 - private int age;
 - private int score;
 - public Students(int age, int score){
 - super();
 - this.age = age;
 - this.score = score;
 - }
 - public int getAge() {
 - return age;
 - }
 - public void setAge(int age) {
 - this.age = age;
 - }
 - public int getScore() {
 - return score;
 - }
 - public void setScore(int score) {
 - this.score = score;
 - }
 - }
 - public static void main(String[] args) {
 - List<Students> students = new ArrayList<Students>();
 - students.add(new Students(23, 100));
 - students.add(new Students(27, 98));
 - students.add(new Students(29, 99));
 - students.add(new Students(29, 98));
 - students.add(new Students(22, 89));
 - Collections.sort(students, new Comparator<Students>() {
 - @Override
 - public int compare(Students o1, Students o2) {
 - int i = o1.getScore() - o2.getScore();
 - if(i == 0){
 - return o1.getAge() - o2.getAge();
 - }
 - return i;
 - }
 - });
 - for(Students stu : students){
 - System.out.println("score:" + stu.getScore() + ":age" + stu.getAge());
 - }
 - }
 
输出结果:
score:89:age22
score:98:age27
score:98:age29
score:99:age29
score:100:age23
从上面的例子我们可以看出Students类没有实现Comparable<T>接口,只是在sort()方法
中多传入一个参数,只不过该参数是一个接口我们需要实现其compare方法。
以上就是是Java中Colelctions工具类为我们提供的两种集合排序方法。
                    
                
                
            
        
浙公网安备 33010602011771号