这应该是一个 Sudoku Puzzle 求解器,并且需要我使用二维 ArrayList 来解谜。
我正在尝试使用 txt 文件中的数字填充 ArrayList。我的测试类中的代码可以制作一个 9x9 ArrayList 并使用我制作的循环填充数字 1-9,以测试填充二维 ArrayList 的工作原理。
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));
}
我得到了Exception in thread "main" java.util.NoSuchElementException
这条线cell = solutionFile.nextInt();
这是 sudoku.txt 文件
346791528
918524637
572836914
163257489
895143762
427689351
239415876
684372195
751968243
我一开始就这样尝试并得到了那个错误,但后来我尝试将所有数字放在一行上,这样我的 for 循环一次只能读取 9 个数字,但是当我测试打印 ArrayList 或应该在它添加它们之后,整个 ArrayList 都是空白的。
它没有从文件中读取数字并将它们放入 ArrayList 以便打印有什么问题?