小白鼠

描述
N只小白鼠(1 < N < 100),每只鼠头上戴着一顶有颜色的帽子。现在称出每只白鼠的重量,要求按照白鼠重量从大到小的顺序输出它们头上帽子的颜色。帽子的颜色用 “red”,“blue”等字符串来表示。不同的小白鼠可以戴相同颜色的帽子。白鼠的重量用整数表示。
输入
输入第一行为一个整数N,表示小白鼠的数目。
下面有N行,每行是一只白鼠的信息。第一个为不大于100的正整数,表示白鼠的重量,;第二个为字符串,表示白鼠的帽子颜色,字符串长度不超过10个字符。

注意:白鼠的重量各不相同。
输出
按照白鼠的重量从大到小的顺序输出白鼠的帽子颜色。
样例输入
3
30 red
50 blue
40 green
想法: 这个题目很简单 ,定义一个类 ,然后用这个类来创建链表 每次都用 第一个 和后面的比较 如果大于就赋值给它 比较完后 这里有两种
形式 一是 将链表中的最大的那个移除 这个比较费时 二 是将最大的那个的值设为0 或负数 import java.util.Scanner;
import java.util.*;
public class Main
{

public static void main(String[] args)
{
LinkedList mou = new LinkedList();
Scanner reader = new Scanner(System.in);
int a = reader.nextInt();
int c ;
String d;
mouse[] ex = new mouse[a];

for(int b = 0 ; b < a ; b ++)
{
Scanner reader1 = new Scanner(System.in);
c = reader1.nextInt();
d = reader1.next();
ex[b] = new mouse(c , d);
mou.add(ex[b]);
}

for(int m = 0 ; m < a ; m ++)
{
int x = mou.get(0).back();
int t = 0;
for(int n = 1 ; n < mou.size() ; n ++)
{
if(mou.get(n).back() > x)
{
x = mou.get(n).back();
t = n ;
}
}
mou.get(t).tui();
mou.get(t).qing();
}

}
}

class mouse
{
private int weight;
private String color;

public mouse(int weight , String color)
{
this.weight = weight;
this.color = color ;
}

public int back()
{
return this.weight;
}

public void tui()
{
System.out.println(this.color);
}
public void qing()
{
this.weight = 0 ;
}
}

你可能感兴趣的:(小白鼠)