獲得した金メダルの数で国を降順に並べ替える必要があります。複数の国が同点の場合は、銀メダル、銅メダルの数で同点を並べ替える必要があります。それでも同点の場合は、アルファベットの昇順で並べ替える必要があります。おそらく必要以上に複雑なプログラムをすでに作成しましたが、それでも文字列の順序付けられていないリストが返されます。インプットは年ごとに与えられ、最初の国が金メダルを獲得し、2番目が銀、3番目が銅です。例えば:
public class MedalTable {
public static void main(String[] args){
String[] input = {"ITA JPN AUS", "KOR TPE UKR", "KOR KOR GBR", "KOR CHN TPE"};
generate(input);
}
public static void generate(String[] results) {
// you fill in this code
//"ITA JPN AUS", "KOR TPE UKR", "KOR KOR GBR", "KOR CHN TPE"
String[] countrystrings = setupstuff(results);
ArrayList<Integer> goldnums = new ArrayList<Integer>();
ArrayList<Integer> silvnums = new ArrayList<Integer>();
ArrayList<Integer> broznums = new ArrayList<Integer>();
for(int o = 0; o < countrystrings.length; o++){
goldnums.add(Integer.parseInt(Character.toString(countrystrings[o].charAt(4))));
silvnums.add(Integer.parseInt(Character.toString(countrystrings[o].charAt(6))));
broznums.add(Integer.parseInt(Character.toString(countrystrings[o].charAt(8))));
}
}
public static String[] setupstuff(String[] data){
Map<String, Integer> goldmap = new TreeMap<String, Integer>();
Map<String, Integer> silvermap = new TreeMap<String, Integer>();
Map<String, Integer> bronzemap = new TreeMap<String, Integer>();
ArrayList<String> goldlist = new ArrayList<String>();
ArrayList<String> silverlist = new ArrayList<String>();
ArrayList<String> bronzelist = new ArrayList<String>();
ArrayList<String> countries = new ArrayList<String>();
for (String i : data){
goldlist.add(i.substring(0, 3));
silverlist.add(i.substring(4, 7));
bronzelist.add(i.substring(8, 11));
}
populatemap(goldmap, goldlist);
populatemap(silvermap, silverlist);
populatemap(bronzemap, bronzelist);
countries = getuniquecountries(goldmap, silvermap, bronzemap);
String[] countrystrings = new String[countries.size()];
countrystrings = createmedalstring(countries, goldmap, silvermap, bronzemap);
Arrays.sort(countrystrings);
for(int v = 0; v < countrystrings.length; v++){
System.out.println(countrystrings[v]);
}
return countrystrings;
}
public static String[] createmedalstring(ArrayList<String> array, Map<String, Integer> gldmap,
Map<String, Integer> slvmap, Map<String, Integer> brzmap){
String[] thiscountry = new String[array.size()];
ArrayList<String> tempstring = new ArrayList<String>();
for (int j = 0; j < array.size(); j++){
thiscountry[j] = array.get(j);
}
String[] concatstuff = new String[thiscountry.length];
for (int k = 0; k < thiscountry.length; k++){
concatstuff[k] = thiscountry[k];
}
for (int i = 0; i < thiscountry.length; i++){
tempstring.add(thiscountry[i]);
if(gldmap.containsKey(thiscountry[i])){
tempstring.add(" " + gldmap.get(array.get(i).toString()));
}
else{
tempstring.add(" 0");
}
if(slvmap.containsKey(thiscountry[i])){
tempstring.add(" " + slvmap.get(array.get(i).toString()));
}
else{
tempstring.add(" 0");
}
if(brzmap.containsKey(thiscountry[i])){
tempstring.add(" " + brzmap.get(array.get(i).toString()));
}
else{
tempstring.add(" 0");
}
concatstuff[i] = tempstring.get(0) + tempstring.get(1) + tempstring.get(2) + tempstring.get(3);
tempstring.clear();
}
return concatstuff;
}
public static ArrayList<String> getuniquecountries(Map<String, Integer> gldmap,
Map<String, Integer> slvmap, Map<String, Integer> brzmap){
ArrayList<String> countries = new ArrayList<String>();
for(Entry<String, Integer> i : gldmap.entrySet()){
if(!countries.contains(i.getKey()))
countries.add(i.getKey());
}
for(Entry<String, Integer> j : slvmap.entrySet()){
if(!countries.contains(j.getKey()))
countries.add(j.getKey());
}
for(Entry<String, Integer> k : brzmap.entrySet()){
if(!countries.contains(k.getKey()))
countries.add(k.getKey());
}
return countries;
}
public static void populatemap(Map<String, Integer> map, ArrayList<String> array){
for (String i : array){
if(map.containsKey(i)){
map.put(i, map.get(i) + 1);
}
else{
map.put(i, 1);
}
}
//System.out.println(map);
}
}
これは次を返します:
AUS 0 0 1 CHN 0 1 0 GBR 0 0 1 ITA 1 0 0 JPN 0 1 0 KOR 3 1 0 TPE 0 1 1 UKR 0 0 1
ただし、上記の出力を注文しようとすると、いくつかの深刻な問題が発生します。現在のように、アルファベットではなくメダルの値で並べ替えるにはどうすればよいですか?