- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这应该是一个 Sudoku Puzzle 解算器,我需要使用二维 ArrayList 来解决这个难题。
我正在尝试使用 txt 文件中的数字填充 ArrayList。我的测试类中的代码可以制作一个 9x9 ArrayList 并使用我为测试二维 ArrayList 的填充方式而创建的循环用数字 1-9 填充它。
import java.util.*;
import java.io.*;
public class test
{
public static void main(String args[])
{
ArrayList<ArrayList<Integer>> data = new ArrayList<ArrayList<Integer>>();
//Loop to add 9 rows
for(int i=1; i<=9; i++)
{
data.add(new ArrayList<Integer>());
}
//Loop to fill the 9 rows with 1-9
for(int k=0; k<9; k++)
{
for(int j=1; j<=9; j++)
{
data.get(k).add(j);
}
}
//Loop to print out the 9 rows
for(int r=0; r<9; r++)
{
System.out.println("Row "+(r+1)+data.get(r));
}
//Reads the file. Need to use this to set the array
File file = new File("F:\\Data Structures 244\\FINAL PROJECT\\SudokuSolver\\sudoku.txt");
try {
Scanner scanner = new Scanner(file);
while (scanner.hasNextLine()) {
String line = scanner.nextLine();
System.out.println(line);
}
scanner.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
当我尝试获取存储在 txt 文件中的数字并使用它们按照读取顺序填充 ArrayList 时,我的问题就来了。我尝试了这段代码,以便它可以从 txt 文件中读取数字并通过重复将其放入 ArrayList 中,这样它将把 txt 文件中的前 9 个数字放入 ArrayList 的第一行,然后转到下一个txt 文件中的行以及用于填充这些数字的 ArrayList。
File file = new File("F:/Data Structures 244/FINAL PROJECT/SudokuSolver/sudoku.txt");
//Needs this try and catch
try {
Scanner solutionFile = new Scanner(file);
int cell=0;
while (solutionFile.hasNextInt())
{
//Loop to fill the 9 rows with the numbers from the sudoku.txt
for(int k=0; k<9; k++)
{
for(int j=1; j<=9; j++)
{
cell = solutionFile.nextInt();
data.get(k).add(cell);
}
}
}
solutionFile.close();
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
for(int r=0; r<9; r++)
{
System.out.println("Row "+(r+1)+data.get(r));
}
我在线程“main”java.util.NoSuchElementException 中得到一个异常
这行 cell = solutionFile.nextInt();
这是 sudoku.txt 文件
346791528
918524637
572836914
163257489
895143762
427689351
239415876
684372195
751968243
我一开始是这样尝试的,但得到了那个错误,但后来我尝试把所有的数字放在一行上,这样我的 for 循环一次只能读取 9 个数字,但是当我测试打印 ArrayList 时或者在添加它们之后应该在其中的内容整个 ArrayList 是空白的。
它不从文件中读取数字并将它们放入 ArrayList 以便打印,这有什么问题?
最佳答案
一个整数可以是多个字符。您将整行作为一个数字读取,然后在完成 9 次读取(每行 1 次)后失败。
您可以重新格式化您的文本文件,以便将数字分开:(我相信如果不是换行,空格肯定会起作用)
很喜欢
3 4 6 7 9 1 5 2 8
...
或者你可以读取整个数字并自己解析
int temp = solutionFile.nextInt();
for(int i = 8; i > 0; i--) {
int cell = temp / (10 * i);
data.get(k).add(cell);
}
//add the last cell
int cell = temp % 10;
data.get(k).add(cell);
或者您可以将值作为字符串读取并解析它
String line = solutionFile.next();
for(int i = 0; i < line.length; i++) {
Integer cell = Integer.parseInt(line.substring(i, i+1));
data.get(k).add(cell);
}
这不是打印数字列表的有效方法(ArrayList 的 toString
不会打印列表,您必须手动打印)
for(int r=0; r<9; r++)
{
System.out.println("Row "+(r+1)+data.get(r));
}
应该是这样的
for(int r = 0; r < data.size(); r++)
{
System.out.print("Row " + (r+1) + ": ");
for(Integer num : data.get(r)) {
System.out.print(num + " ");
}
System.out.println(); //to end the line
}
关于java - 试图从 txt 文件中填充二维 ArrayList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10357302/
我是 C++ 的新手,我在使用这段代码时遇到了问题: string output_date(int day, int month, int year){ string date; if
所以我这样做了 tar cvzf test.zip FP 为了创建目录 FP 的 zip 但是,它会列出 zip 中的目录 FP/ FP/php/ FP/php/pdf/ FP/php/docs/ F
我正在尝试在 Swift、Xcode 7.3(所以是 Swift 2.2)中创建一个通用类,但我似乎无法让它通过编译器: protocol Struct1Protocol { } struct Str
我的测试用例是这样的: class FooTest extends PHPUnit_Framework_TestCase { /** @covers MyClass::bar */ f
我正在尝试将brew install wine作为使electron-builder工作的一步。但是我所能得到的只是以下响应: ==> Installing dependencies for wine
我这样做: string[,] string1 = {{"one", "0"},{"Two", "5"},{"Three","1"}}; int b = 0; for(int i = 0; i <=
我正在尝试使用 SetWindowsHookEx 键盘 Hook Notepad.exe。 如您所见,工作线程正在将其 ASCII 代码(即 wParam)发送到指定的服务器。 UINT WINAPI
我正在尝试将 ListView 实现到我的 Fragment 中,但无论我尝试什么,我都会得到一个 NullPointerException。我检查对象是否为 null 并记录是否为 null,看起来
我尝试在一行中对齐两个 div。使用 float left 属性,一切顺利。但是当我在 div 中使用图像时,它开始产生问题。 所以这是我的示例代码:- Some headi
我目前正在使用此代码来获取图像的灰度图像表示并以 (512, 370, 1) 的格式表示它大批。 img_instance = cv2.imread(df.iloc[i][x_col]) / 255.
总结 我正在创建一个简单的应用程序,它允许用户选择一个包含顶级窗口的进程。用户首先键入 native DLL(而非托管 DLL)的路径。然后用户键入将在 Hook 过程中调用的方法的名称。该方法不得返
我是一名优秀的程序员,十分优秀!