- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
程序猜测 1000-9999 之间的数字,用户说出猜测的数字中有多少是正确的数字并且位于正确的位置(但仅输入正确数字的数量)。然而,每次我尝试时,我都会得到一大堆重复项,但只有一个正确数字的条目。我将如何确保我的 ArrayList 中没有重复项?我更希望被指出正确的方向,而不仅仅是给出答案,谢谢!这是我的代码(主要方法是我的教授编写的,我不需要更改它):
import java.util.ArrayList;
import java.util.Random;
import javax.swing.JOptionPane;
public class GuessingGame {
public int numGuesses = 0;
public ArrayList<Integer> numbers = new ArrayList<Integer>();
public int guess;
public GuessingGame ( ) {
for (int i = 1000; i < 10000; i++) {
numbers.add(i);
}
//populating numbers ArrayList
}
public int myGuessIs() {
numGuesses++;
//increases number of guesses
int tempIndex = (int) (Math.random() * numbers.size());
int myguess = numbers.get(tempIndex);
//creates a new guess
guess = myguess;
//sets global variable
return myguess;
}
public int totalNumGuesses() {
return numGuesses;
//returns guesses needed to reach solution
}
public void updateMyGuess(int nmatches) {
ArrayList<Integer> temp = new ArrayList<Integer>();
ArrayList<Integer> temp2 = new ArrayList<Integer>();
int first = guess/1000;
int second = (guess/100)%10;
int third = (guess/10)%10;
int fourth = guess%10;
//variables for each digit of guess
if (nmatches == 1) {
for (int i = 0; i < numbers.size(); i++) {
if (numbers.get(i)/1000 == first) temp.add(numbers.get(i));
if ((numbers.get(i)/100)%10 == second) temp.add(numbers.get(i));
if ((numbers.get(i)/10)%10 == third) temp.add(numbers.get(i));
if (numbers.get(i)%10 == fourth) temp.add(numbers.get(i));
}
numbers.clear();
numbers.addAll(temp);
}else if (nmatches == 2) {
for (int i = 0; i < numbers.size(); i++) {
if (numbers.get(i)/1000 == first &&
(numbers.get(i)/100)%10 == second) temp.add(numbers.get(i));
if (numbers.get(i)/1000 == first &&
(numbers.get(i)/10)%10 == third) temp.add(numbers.get(i));
if (numbers.get(i)/1000 == first &&
numbers.get(i)%10 == fourth) temp.add(numbers.get(i));
if ((numbers.get(i)/100)%10 == second &&
(numbers.get(i)/10)%10 == third) temp.add(numbers.get(i));
if ((numbers.get(i)/100)%10 == second &&
numbers.get(i)%10 == fourth) temp.add(numbers.get(i));
if ((numbers.get(i)/10)%10 == third &&
numbers.get(i)%10 == fourth) temp.add(numbers.get(i));
}
numbers.clear();
numbers.addAll(temp);
}else if (nmatches == 3) {
for (int i = 0; i < numbers.size(); i++) {
if (numbers.get(i)/1000 == first && (numbers.get(i)/100)%10 == second
&& (numbers.get(i)/10)%10 == third) temp.add(numbers.get(i));
if (numbers.get(i)/1000 == first && (numbers.get(i)/10)%10 == third
&& numbers.get(i)%10 == fourth) temp.add(numbers.get(i));
if ((numbers.get(i)/100)%10 == second && (numbers.get(i)/10)%10 == third
&& numbers.get(i)%10 == fourth) temp.add(numbers.get(i));
}
numbers.clear();
numbers.addAll(temp);
}else {
for (int i = 0; i < numbers.size(); i++) {
if (numbers.get(i)/1000 == first) temp2.add(numbers.get(i));
if ((numbers.get(i)/100)%10 == second) temp2.add(numbers.get(i));
if ((numbers.get(i)/10)%10 == third) temp2.add(numbers.get(i));
if (numbers.get(i)%10 == fourth) temp2.add(numbers.get(i));
}
numbers.removeAll(temp2);
}
//creates new smaller ArrayList with better guesses
//sets numbers as the smaller list
//update the guess based on the number of matching digits claimed by the user
for (int i = 0; i < numbers.size(); i++) {
System.out.println(numbers.get(i) + " " + i);
} //troubleshooting
}
public static void main(String[] args) {
GuessingGame gamer = new GuessingGame( );
JOptionPane.showMessageDialog(null, "Think of a number between 1000 and 9999.\n Click OK when you are ready...", "Let's play a game", JOptionPane.INFORMATION_MESSAGE);
int numMatches = 0;
int myguess = 0;
do {
myguess = gamer.myGuessIs();
if (myguess == -1) {
JOptionPane.showMessageDialog(null, "I don't think your number exists.\n I could be wrong though...", "Mistake", JOptionPane.INFORMATION_MESSAGE);
System.exit(0);
}
String userInput = JOptionPane.showInputDialog("I guess your number is " + myguess + ". How many digits did I guess correctly?");
// quit if the user input nothing (such as pressed ESC)
if (userInput == null)
System.exit(0);
// parse user input, pop up a warning message if the input is invalid
try {
numMatches = Integer.parseInt(userInput.trim());
}
catch(Exception exception) {
JOptionPane.showMessageDialog(null, "Your input is invalid. Please enter a number between 0 and 4", "Warning", JOptionPane.WARNING_MESSAGE);
numMatches = 0;
}
// the number of matches must be between 0 and 4
if (numMatches < 0 || numMatches > 4) {
JOptionPane.showMessageDialog(null, "Your input is invalid. Please enter a number between 0 and 4", "Warning", JOptionPane.WARNING_MESSAGE);
numMatches = 0;
}
if (numMatches == 4)
break;
// update based on user input
gamer.updateMyGuess(numMatches);
} while (true);
// the game ends when the user says all 4 digits are correct
System.out.println("Aha, I got it, your number is " + myguess + ".");
System.out.println("I did it in " + gamer.totalNumGuesses() + " turns.");
}
}
最佳答案
使用不允许重复的数据结构来代替ArrayList
:Set
。
关于java - ArrayList在程序中变得巨大以猜测1000-9999之间的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32490667/
我通过在共享首选项中使用 GSON 将其转换为 json 来存储我的复杂对象。但是在检索它时,无法获得预期的字符串。 代码 这里 holderListCustomizationMap 是对象的复杂映射
因此,我正在尝试对大于可用RAM的gz压缩文件执行某种面向行的操作,因此排除了将其首先读取为字符串的情况。问题是,如何在rust(缺少gunzip file.gz|./my-rust-program)
我试图更好地理解为什么具有潜在大精度的大数字处理不一致,特别是在 JavaScript 及其本地化工具(例如 ECMA-402/Intl)中。我假设这与 float 的使用有关,但我想了解限制在哪里和
我们有一个 5GB 的 csv 文件,这是我们业务的主列表。 有多个类别,每个类别包含数千条记录。我们的目标是将每个类别导出为其自己的 csv 文件。 我们如何运行查询并导出数据? 运行 OSX。有没
基于上一个问题 ( see here ),我试图通过 xmlEventParse 读取许多大型 xml 文件,同时保存节点变化数据。使用此示例 xml:https://www.nlm.nih.gov/
我正在开发一个系统,它加载一个巨大的 CSV 文件(超过 100 万行)并保存到数据库中。每行也有超过一千个字段。 CSV 文件被视为一个批处理,每一行都被视为其子对象。在添加对象的过程中,每个对象都
借助node-google模块 我编写了一个简单的 Node 模块来为我的网络应用程序启用“文本网络搜索”功能,并在我的一个 View 中显示结果。 由于在来自同一 IP 的少量查询后 Google
我有相当大的 4D 阵列 [20x20x40x15000],我使用 h5py 将其作为 HDF5 文件保存到磁盘.现在的问题是我想计算整个数组的平均值,即使用: numpy.average(HDF5_
我在遗留代码库中连接巨大的 CString 时遇到问题。 CStrings 可以包含 base64 编码的文件,因此可能很大。在某些时候,这些 CString 会像这样连接起来: result +=
我正在尝试让我的服务器提供来自另一台服务器的巨大文件。但是,为了保护我的凭据免受该远程服务器的攻击,我不能简单地将请求者重定向到文件 url;另一方面,虽然使用 StreamingHttpRespon
感谢对此的任何见解,我有 2 个问题: 1) 弄清楚为什么我的本地数据库 oplog 庞大且不断增长 2) 安全删除(或重置)我的 local.oplog 以释放 18 GB 的浪费空间 场景:我一直
我的预期任务:获取大量数据(1 GB 及更多大小)json 字符串,操作(进行一些格式化、解析 json、重组 json 数据)并写入新格式化的 json 字符串作为响应。处理这种情况的更好方法是什么
我做了一个小的 Angular 4 应用程序,但我不知道如何应用 tree shaking 和 aot 编译。我运行的命令如下: ng build --prod --aot 但我得到的结果仍然很大,供
我是一名优秀的程序员,十分优秀!