91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java排行榜功能如何實現

小億
417
2024-01-22 14:02:38
欄目: 編程語言

要實現Java排行榜功能,可以按照以下步驟進行:

  1. 創建一個Ranking類,用于存儲排行榜數據和相關操作方法。

  2. 在Ranking類中,可以使用一個數據結構(如List、Map等)來存儲排行榜的數據。每個數據項可以包含玩家的姓名、得分等信息。

  3. 實現一個方法,用于將新的得分添加到排行榜中。該方法需要比較新得分與已有的得分,找到合適的位置插入新得分,并保持排行榜的長度。可以使用Collections.sort()方法對排行榜進行排序。

  4. 實現一個方法,用于顯示排行榜的內容。可以遍歷排行榜數據結構,逐個輸出排行榜中的項。

  5. 可以實現其他功能,如刪除指定位置的得分、查找指定玩家的得分等。

下面是一個簡單的示例代碼:

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public class Ranking {
    private List<Score> scores;
    private int maxSize; // 排行榜最大長度

    public Ranking(int maxSize) {
        this.scores = new ArrayList<>();
        this.maxSize = maxSize;
    }

    public void addScore(Score score) {
        scores.add(score);
        Collections.sort(scores); // 根據得分排序
        if (scores.size() > maxSize) {
            scores.remove(scores.size() - 1); // 刪除最后一名
        }
    }

    public void displayRanking() {
        System.out.println("排行榜:");
        for (int i = 0; i < scores.size(); i++) {
            System.out.println((i + 1) + ". " + scores.get(i));
        }
    }

    public void removeScore(int position) {
        if (position >= 1 && position <= scores.size()) {
            scores.remove(position - 1);
        } else {
            System.out.println("無效的位置!");
        }
    }

    public int getScore(String playerName) {
        for (Score score : scores) {
            if (score.getPlayerName().equals(playerName)) {
                return score.getScore();
            }
        }
        return -1; // 未找到對應玩家的得分
    }

    public static void main(String[] args) {
        Ranking ranking = new Ranking(5);
        ranking.addScore(new Score("玩家1", 100));
        ranking.addScore(new Score("玩家2", 200));
        ranking.addScore(new Score("玩家3", 150));
        ranking.addScore(new Score("玩家4", 300));
        ranking.addScore(new Score("玩家5", 250));

        ranking.displayRanking();

        ranking.removeScore(3);

        System.out.println("玩家2的得分:" + ranking.getScore("玩家2"));
    }
}

class Score implements Comparable<Score> {
    private String playerName;
    private int score;

    public Score(String playerName, int score) {
        this.playerName = playerName;
        this.score = score;
    }

    public String getPlayerName() {
        return playerName;
    }

    public int getScore() {
        return score;
    }

    @Override
    public int compareTo(Score other) {
        return Integer.compare(other.score, this.score); // 降序排序
    }

    @Override
    public String toString() {
        return playerName + ":" + score + "分";
    }
}

這個示例代碼中,Ranking類表示排行榜,Score類表示每個玩家的得分。在main方法中,創建一個Ranking對象,添加一些得分,并展示排行榜。然后刪除排行榜中的第3名,并獲取指定玩家的得分。

0
确山县| 金沙县| 颍上县| 克山县| 鸡泽县| 康平县| 新营市| 武功县| 平顶山市| 石台县| 阿勒泰市| 仁寿县| 化德县| 同心县| 涟水县| 澄江县| 安庆市| 彭山县| 康保县| 松江区| 阳信县| 石屏县| 隆昌县| 谢通门县| 金塔县| 鄂尔多斯市| 手机| 大同市| 彭水| 肃北| 景宁| 左贡县| 昭通市| 珠海市| 尉氏县| 烟台市| 柳河县| 博客| 丘北县| 诸城市| 望都县|