簡體   English   中英

如何從LinkedList獲取數據?

[英]How to get data from LinkedList?

這是我正在尋找的示例輸出,用於我的程序。

示例輸出

在每一行輸入體育場名稱和游戲收入

完成后輸入完成

巨人隊1000

Foxboro 500

巨人隊1500

DONE

輸入體育場的名稱以獲得總收入:

巨人

總收入為2500.00

我把一切都搞定了,但最后總收入。 我不確定如何進入我的鏈接列表並獲取游戲收入並顯示它..這是我現在的代碼,以及我一直在搞亂...

import java.util.LinkedList;
import java.util.Scanner;


public class LinkedLists {

    private final Scanner keyboard;



    private final LinkedList<String> stadiumNames;
    private final LinkedList<Integer> gameRevenue;


    public LinkedLists() {
        this.keyboard = new Scanner(System.in);
        this.stadiumNames = new LinkedList<String>();
        this.gameRevenue = new LinkedList<Integer>();
    }

    public void addData(String stadium, int revenue){
        stadiumNames.add(stadium);
        gameRevenue.add(revenue);
    }

    public void loadDataFromUser() {
        System.out.println("On each line enter the stadium name and game revenue.");
        System.out.println("Enter done when you are finished.");

        boolean done = false;
        while(!done) {
            System.out.print("Enter the name of the stadium:");
            String stadium = keyboard.next();
            if (stadium.equals("done")) {
                done = true;
            } else {
                System.out.print("Enter game revenue: ");
                addData(stadium, keyboard.nextInt());
            }
        }
    }

    // return -1 if not found
    public int getIndexForName(String name) {

        if(stadiumNames.contains(name)){
            System.out.println("The total revenue is: " +gameRevenue.get(0));
            System.exit(0);
        }

        return -1;

    }


    public void showInfoForName(String name) {
        int index = getIndexForName(name);
        if (index==-1) {
            System.out.println("There is no stadium named " + name);
        } else {

        }
    }

    public void showInfoForName() {
        System.out.println("Enter the name of the stadium to get the total revenue for it.");
        showInfoForName(keyboard.next());
    }

    public static void main(String[] args) {
        LinkedLists pgm = new LinkedLists();
        pgm.loadDataFromUser();
        pgm.showInfoForName();
    }
}

嘗試這個:

public int getIndexForName(String name) {
    if (stadiumNames.contains(name)) {
        int total = 0;
        for (int i = 0 ; i < stadiumNames.size() ; i++)
            if (stadiumNames.get(i).equals(name))
                total += gameRevenue.get(i);
        System.out.println("The total revenue is: " + total);
        System.exit(0);
    }
    return -1;
}

有更好的方法來做到這一點。 我可能會使用一張Map將每個體育場館名稱映射到其總收入。 您可以在addData方法中更新此映射。

使用哈希映射更加清晰,加上你可以保存總數而不計算它:

import java.util.Scanner;
import java.util.Map;
import java.util.HashMap;

/**
 * User: user
 * Date: 09/09/2012
 */
public class Blah {

    private Scanner keyboard;
    private Map<String, Integer> stadiumRevenues;
    private Integer total = 0;

    public Blah() {
        this.keyboard = new Scanner(System.in);
        this.stadiumRevenues = new HashMap<String, Integer>();
    }

    public void addData(String stadium, int revenue){
        stadiumRevenues.put(stadium, revenue);
        total += revenue;
    }

    public void loadDataFromUser() {
        System.out.println("On each line enter the stadium name and game revenue.");
        System.out.println("Enter done when you are finished.");

        boolean done = false;
        while(!done) {
            System.out.print("Enter the name of the stadium:");
            String stadium = keyboard.next();
            if (stadium.equals("done")) {
                done = true;
            } else {
                System.out.print("Enter game revenue: ");
                addData(stadium, keyboard.nextInt());
            }
        }
    }

    public int getTotal() {
        return total;
    }

    // return -1 if not found
    public int getIndexForName(String name) {

        Integer rev = stadiumRevenues.get(name);

        if(rev != null){
            System.out.println("The total revenue is: " +rev);
            System.exit(0);
        }

        return -1;

    }

    public void showInfoForName(String name) {

        Integer rev = stadiumRevenues.get(name);

        if (rev == null) {
            System.out.println("There is no stadium named " + name);
        } else {

        }
    }

    public void showInfoForName() {
        System.out.println("Enter the name of the stadium to get the total revenue for it.");
        showInfoForName(keyboard.next());
    }

    public static void main(String[] args) {
        Blah pgm = new Blah();
        pgm.loadDataFromUser();
        pgm.showInfoForName();
    }


}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM