使用Linked List Stack的N-Queens,Java

时间:2012-03-27 00:49:55

标签: java linked-list stack n-queens

处理N-queens问题。有一些困难正确地填满堆栈。希望有人能给我任何指示。

现在我的输出很奇怪。只有7个节点,但我的'成功'布尔需要8才能成为真。当我认为它应该是1,2时,头节点是2,1,因为我要增加列。

我知道我也需要检查对角线,但是我一步一步地接受它。

如果我的conflictCheck方法,我需要解决的第一件事。它永远不会返回真实(因为,是的,存在冲突)。如果我想出来的话,我会很快更新。

Hurray
8, 1
7, 1
6, 1
5, 1
4, 1
3, 1
2, 1

编辑:

我对代码进行了一些更改以进行更递归的尝试。 我的新输出是:

The stack
1, 1

End of stack
Pushing next node
The stack
2, 1
1, 1

End of stack
Moving over one column
The stack
2, 2
1, 1

End of stack
problem
Moving over one column
The stack
2, 3
1, 1

End of stack

这是正在进行的代码/工作的一部分。现在,它正在进入一个永恒的循环,很可能是在那个时候(conflictCheck)

    public static boolean conflictCheck() {
    QueenNode temp = head;
    //walk through stack and check for conflicts

    while(temp!=null) {
        //if there is no next node, there is no conflict with it
        if (temp.getNext() == null){
            System.out.println("No next node");
            if (queens.size() < 8 ) {
                return false;
            }
        }
        else if (temp.getRow() ==temp.getNext().getRow() || temp.getColumn() == temp.getNext().getColumn() ||
                diagonal(temp, temp.getNext())){
            return true;
        }
    }
    return false;
}

public static void mover(QueenNode n) {
    System.out.println("Moving over one column");

        n.setColumn(n.getColumn()+1);

    queens.viewPieces();
}

public static void playChess(int k, int total) {
    QueenNode temp= head;
    while (temp != null) {
        System.out.println("Pushing next node");

        queens.push(k,1);
        queens.viewPieces();
        //success
        if(k == 8){
            System.out.println("Hurray");
            success = true;
            return;
        }
        //conflict between pieces, loops through entire board
        while (conflictCheck()) {
            if (head.getColumn() != 8) {
                mover(head);
            }
            else {
                queens.pop();
                mover(head);
            }
        }

        playChess(k+1, total);                  
    }
}

public static void main(String[] args) {
    queens.push(1, 1);
    queens.viewPieces();
    success = false;
    playChess(2, total);
}

}

1 个答案:

答案 0 :(得分:0)

temp != null && temp.getNext()!= null - 对于第8个皇后,值temp.getNext()为空并且不打印。改为:

while (temp != null ) {
                System.out.println(temp.getRow() + ", " + temp.getColumn());
                temp = temp.getNext();
            }

修改

更改||到&amp;&amp;:

if (temp.getRow() != temp.getNext().getRow() &&
                temp.getColumn() != temp.getNext().getColumn()) {
            return false;
        }

在代码queens.push(queens.size()+1, 1);中,您始终将1指定为第二个参数。你应该检查所有可能性。