码迷,mamicode.com
首页 > 编程语言 > 详细

冒泡排序之如何根据对象一个属性排序

时间:2018-10-23 10:58:45      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:import   习题   any   void   对象   this   今天   lis   style   

这个真的非常常用,尤其是做习题的时候,今天算是明白,其实很简单,但是真是面向对象的概念还没理解到位,另外,类真的很神奇,可以是数组类型,继续做题。

package com.company;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

import javax.sound.midi.Soundbank;

public class Main {
    //经典冒泡排序
    public static void main(String[] args) {
        Scanner scanner=new Scanner(System.in);
        int n=scanner.nextInt();
        int[] num=new int[n];
        String[] name=new String[n];
        ArrayList<Student> stu=new ArrayList<Student>();
        for (int i=0;i<num.length;i++){
            name[i]=scanner.next();
            num[i]=scanner.nextInt();
        }
        for (int i=0;i<num.length;i++){
            Student s=new Student(name[i],num[i]);
            stu.add(s);
        }
        Student[] st=new Student[num.length];//类作为数组使用
        stu.toArray(st);
        sort(st,n);
    }
    //从小到大排序
    public static  void sort(Student[] st,int n){
        int i,j,k;
        Student temp;
        for (i=n-1;i>0;i--){
            for (j=0;j<i;j++){
                if (st[j].score>st[j+1].score){
                    temp=st[j];
                    st[j]=st[j+1];
                    st[j+1]=temp;
                }
            }
        }
        for (i=0;i<st.length;i++){
            System.out.print(st[i].name+" ");
        }
    }
    public static class Student{
        String name;
        int score;
        public Student(){}
        public Student(String name,int score){
            this.name=name;
            this.score=score;
        }
    }
}

 

冒泡排序之如何根据对象一个属性排序

标签:import   习题   any   void   对象   this   今天   lis   style   

原文地址:https://www.cnblogs.com/zhuzehua/p/9834749.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!