gpt4 book ai didi

java - 在 Java 中用数组显示统计信息

转载 作者:行者123 更新时间:2023-12-02 00:25:37 25 4
gpt4 key购买 nike

我正在尝试使用 Java 中的数组来显示简单文本文件的统​​计信息。我知道我应该做什么,但我真的不知道如何编码。那么有人可以向我展示有关如何执行此操作的示例代码吗?

假设该文本文件名为 gameranking.txt,其中包含以下信息(这是一个简单的 txt 文件作为示例):

Game Event, 1st place, second place, third place, fourth place
World of Warcraft, John, Michael, Bill, Chris
Call of Duty, Michael, Chris, John, Bill
League of Legends, John, Chris, Bill, Michael.

我的目标是显示统计数据,例如每个人在如下表中获胜的数量,例如多少个第一名、第二名

Placement     First place, second, third, fourth
John 2 0 1 0
Chris 0 2 0 1
etc...

我的想法:
首先,我会读取 gameranking.txt 并将其存储到“输入”。然后我可以使用 while 循环读取每一行并将每一行存储到一个名为“line”的字符串中,然后,我将使用数组方法“split”拉出每个字符串并将它们存储到单独的数组中。之后,我会计算每个人赢得的排名,并使用 printf 将它们显示在一个整齐的表格中。

我的第一个问题是我不知道如何为这些数据创建数组。我是否首先需要通读文件并查看每行和每列中有多少个字符串,然后相应地创建数组表?或者我可以在读取每个字符串时将它们存储在数组中吗?

我现在拥有的伪代码如下。

  • 统计有多少行并将其存储在 row 中
  • 计算有多少列并将其存储在列中
  • 创建数组
  • String [] [] gameranking = new String [行] [列]
  • 接下来读取文本文件并将信息存储到数组中

使用:

while (input.hasNextLine) {
String line = input.nextLine();
while (line.hasNext()) {
Use line.split to pull out each string
first string = event and store it into the array
second string = first place
third string =......
  • 在代码中的某个位置,我需要计算展示位置......

有人可以告诉我应该如何做吗?

最佳答案

我不会编写完整的程序,但我会尝试解决每个问题并给您一个简单的建议:

读取初始文件,您可以获取每一行并使用 BufferedReader 将其存储在字符串中(或者如果您愿意,可以使用 LineNumberReader)

BufferedReader br = new BufferedReader(new FileReader(file));
String strLine;
while ((strLine = br.readLine()) != null) {
......Do stuff....
}

此时,在 while 循环中,您将遍历字符串(因为它以逗号分隔,所以您可以使用它来分隔每个部分)。对于每个子字符串你可以a) 将其与第一、第二、第三、第四进行比较以获得排名。b) 如果不是其中任何一个,那么它可以是游戏名称或用户名

您可以通过位置或第 n 个子字符串来计算(即,如果这是第 5 个子字符串,则它可能是第一个游戏名称。由于您有 4 个玩家,因此下一个游戏名称将是第 10 个子字符串,依此类推) 。请注意,我忽略了“游戏事件”,因为这不是模式的一部分。您可以使用 split 来执行此操作或使用许多其他选项,而不是尝试解释我将为您提供我找到的教程的链接: http://pages.cs.wisc.edu/~hasti/cs302/examples/Parsing/parseString.html

对于结果制表,基本上你可以为每个玩家获取一个 int 数组,用于跟踪他们的第一、第二、第三、奖项等。

int[] Bob = new int[4]; //where 0 denotes # of 1st awards, etc.
int[] Jane = new int[4]; //where 0 denotes # of 1st awards, etc.

显示表格是组织数据并在 GUI 中使用 JTable 的问题: http://docs.oracle.com/javase/tutorial/uiswing/components/table.html

好吧...这是我写的,我确信有一种更干净、更快的方法,但这应该给你一个想法:

String[] Contestants = {"Bob","Bill","Chris","John","Michael"};

int[][] contPlace=new int[Contestants.length][4];
String file = "test.txt";

public FileParsing() throws Exception {
Arrays.fill(contPlace[0], 0);
Arrays.fill(contPlace[1], 0);
Arrays.fill(contPlace[2], 0);
Arrays.fill(contPlace[3], 0);
BufferedReader br = new BufferedReader(new FileReader(file));
String strLine;
while((strLine=br.readLine())!=null){
String[] line = strLine.split(",");
System.out.println(line[0]+"/"+line[1]+"/"+line[2]+"/"+line[3]+"/"+line[4]);
if(line[0].equals("Game Event")){
//line[1]==1st place;
//line[2]==2nd place;
//line[3]==3rd place;
}else{//we know we are on a game line, so we can just pick the names
for(int i=0;i<line.length;i++){
for(int j=0;j<Contestants.length;j++){
if(line[i].trim().equals(Contestants[j])){
System.out.println("j="+j+"i="+i+Contestants[j]);
contPlace[j][i-1]++; //i-1 because 1st substring is the game name
}

}
}
}
}
//Now how to get contestants out of the 2d array
System.out.println("Placement First Second Third Fourth");
System.out.println(Contestants[0]+" "+contPlace[0][0]+" "+contPlace[0][1]+" "+contPlace[0][2]+" "+contPlace[0][3]);
System.out.println(Contestants[1]+" "+contPlace[1][0]+" "+contPlace[1][1]+" "+contPlace[1][2]+" "+contPlace[1][3]);
System.out.println(Contestants[2]+" "+contPlace[2][0]+" "+contPlace[2][1]+" "+contPlace[2][2]+" "+contPlace[2][3]);
System.out.println(Contestants[3]+" "+contPlace[3][0]+" "+contPlace[3][1]+" "+contPlace[3][2]+" "+contPlace[3][3]);
System.out.println(Contestants[4]+" "+contPlace[4][0]+" "+contPlace[4][1]+" "+contPlace[4][2]+" "+contPlace[4][3]);

}

如果您需要填充参赛者数组或跟踪比赛,则必须插入适当的代码。另请注意,如果您除了显示它们之外还想做任何事情,那么使用这种二维数组方法可能不是最好的。您应该能够获取我的代码,添加 main,然后查看它的运行。

关于java - 在 Java 中用数组显示统计信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10128177/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com