0

我正在尝试制作一个程序来在 Java 中的单词搜索中查找单词。我知道以前做过,但我还在学习,如果我自己做会更酷。无论如何,我发现我用于扫描网格的主 for 循环仅针对我想要查找的第一个单词执行。这是我的代码中找到这个词的部分:

while (!word.equalsIgnoreCase("/exit")) {
    { //Find word
        Pair cursor = new Pair();
        Pair direction = new Pair();
        Pair location = new Pair();

        for (int x = 0; !whole_word_found && x<grid.length; x++) {  int y = 0;
            for (y = 0; !whole_word_found && y<grid[x].length; y++) {
                cursor = new Pair(x,y);
                //Lots of word-finding code, including writing whole_word_found and using the three pairs listed above
            }
        }

        //Print location of word
        if (word.length() != 1) {
            if (whole_word_found) {
                System.out.printf("The word is located at %s going %s.%n",location.toString(0),direction.toString(0));
            } else {
                System.out.println("Sorry, word not found.");
            }
        }
    } //Find word

    //Get next word
    System.out.println("Enter another word, or type \"/exit\" to exit.");
    input = new Scanner(System.in);
    word = input.nextLine().replaceAll(" ","");
}

所有变量都已正确初始化,Pair 是我创建的一个类,用于保存有序对 (x,y) 的值。我只是不喜欢我必须制作的每对 xy 对都有两个单独的值(尽管我在技术上仍然这样做)。

无论如何,如果你能找到它,谢谢你的帮助。

4

1 回答 1

1

您需要whole_word_found在循环的每次迭代中重置。

while (!word.equalsIgnoreCase("/exit")) {
    // ...
    whole_word_found = false;
    for (int x = 0; !whole_word_found && x<grid.length; x++) {
    // ...
于 2013-07-17T18:37:17.933 回答