使用原始数组在Java中创建排行榜[复制]

问题描述 投票:2回答:2

这个问题在这里已有答案:

我正在用Java创建一个控制台游戏。我想跟踪得分和名字。

我已经创建了两个数组。

String[] PlayerNames = {"Bob", "Rick", "Jack"}; // just an example
int[] PlayerScores = {40, 20, 60}; // just an example

我想对他们的分数进行排序,但也知道分数属于谁,然后将其打印出来:

 Jack      60
 Bob       40      
 Rick      20
java arrays sorting console leaderboard
2个回答
1
投票

创建一个map,其中播放器名称为键,分数为值,然后根据值对map进行排序:

public static void main(String[] args) {
    Map<String, Integer> unsortedMap = new HashMap<String, Integer>();
    unsortedMap.put("Jack", 60);
    unsortedMap.put("Bob", 40);
    unsortedMap.put("Rick", 20);

    Map<String, Integer> sortedMap = sortByValue(unsortedMap);
    printMap(sortedMap);
}

private static Map<String, Integer> sortByValue(Map<String, Integer> unsortMap) {

    // 1. Convert Map to List of Map
    List<Map.Entry<String, Integer>> list =
            new LinkedList<Map.Entry<String, Integer>>(unsortMap.entrySet());

    // 2. Sort list with Collections.sort(), provide a custom Comparator
    //    Try switch the o1 o2 position for a different order
    Collections.sort(list, new Comparator<Map.Entry<String, Integer>>() {
        public int compare(Map.Entry<String, Integer> o1,
                           Map.Entry<String, Integer> o2) {
            return (o1.getValue()).compareTo(o2.getValue());
        }
    });

    // 3. Loop the sorted list and put it into a new insertion order Map LinkedHashMap
    Map<String, Integer> sortedMap = new LinkedHashMap<String, Integer>();
    for (Map.Entry<String, Integer> entry : list) {
        sortedMap.put(entry.getKey(), entry.getValue());
    }

    /*
    //classic iterator example
    for (Iterator<Map.Entry<String, Integer>> it = list.iterator(); it.hasNext(); ) {
        Map.Entry<String, Integer> entry = it.next();
        sortedMap.put(entry.getKey(), entry.getValue());
    }*/


    return sortedMap;
}

public static <K, V> void printMap(Map<K, V> map) {
    for (Map.Entry<K, V> entry : map.entrySet()) {
        System.out.println("Key : " + entry.getKey()
                + " Value : " + entry.getValue());
    }
}

注意:有关详细信息,请参阅https://www.mkyong.com/java/how-to-sort-a-map-in-java/


0
投票

您可以使用哈希映射。使用playerNames中的每个名称作为键并创建值的列表(如果两个或更多具有相同名称的玩家获得分数)。 hashmap只允许每个键有一个值,这就是为什么你应该为分数创建一个整数列表。

Map<String, List<Integer>> scoreboard = new HashMap<>();
© www.soinside.com 2019 - 2024. All rights reserved.