1

这应该是一个 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 以便打印有什么问题?

4

1 回答 1

4

一个整数可以是多个字符。您将整行读取为一个数字,然后在完成九次读取(每行 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);
}

这不是打印数字列表的有效方法(ArrayListtoString不会为您打印列表,您必须手动执行)

 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
 }
于 2012-04-27T20:26:35.360 回答