3

我该如何解决 8/4 皇后问题?我应该使用 DFS/BFS,我认为 DF 会更好。任何人都可以给出一些伪代码/指导方针吗?

4

4 回答 4

2

使用堆栈和回溯,最简单的方法是通过递归。

请参阅这些其他 SO 帖子:

C++ 中的 Dumb 8 Queens 问题

于 2011-02-03T06:40:26.043 回答
0

我的解决方案有 2 个预定义的逻辑,行只有一个皇后,列只有一个皇后。有一个长度为 8 的一维数组。所有数组值设置为 0-7 之一,但所有值仅使用一次(0-7 值的排列) arr[0]=5 值表示列中的皇后第一行 6 arr[1]=3 值表示第二行第 4 列的皇后,只控制数组检查的交叉违例值,不需要检查行或行违例。排列和交叉违反函数你所需要的,(C++ STL 有排列函数,只需要交叉违反函数)

于 2011-02-03T09:58:55.340 回答
0

如果皇后在 (i,j) 和 (k,l) 坐标处,那么它们可以互相攻击,如果

  1. i=k(同一行)
  2. j=l(同一列)
  3. |ik|=|jl| (对角线),| | 表示绝对值

    bool place(k,i)
    {
    //returns true if the queen can be placed at k-th row and i-th column
    //x[] is a global array with first (k-1) values set already.
    //x[p]=q means a queen is at location (p,q)
    
    for(j=1 to k-1)
    {
    if(x[j]==i)||(ABS(x[j]-i)==ABS(j-k))  //checking if another queen in same column or     diagonally
    return false;
    }
    return true;
    }
    

    要使用回溯打印所有可能的展示位置:

    无效 NQueens(k,n) {

    for(i=1 to n)
    {
    if(place(k,i)) //checking if queen can be placed at (k,i)
    {
    x[k]=i;
    if(k==n) then write (x[1:n]);  
    else Nqueens(k+1,n);
     }
     }
    }
    

*参考saurabh学校

于 2014-01-19T07:16:15.213 回答
0

这是我使用回溯的实现。改变N的值以获得不同的解决方案。

它将打印给定数量的皇后可用的所有解决方案。

package com.org.ds.problems;

public class NQueueProblem {
private static int totalSolution = 0;
    public static void main(String[] args) {
        int n = 5;
        int arr[][] = new int[n][n];
        backTrack(arr, 0);
        System.out.println("\nTotal Number of Solutions are:- " + totalSolution);
    }

    private static void printQueuens(int[][] arr) {
        totalSolution++;
        System.out.println("\n========Start Printing Solution "+totalSolution+"=========");
        for(int i=0; i<arr.length;i++) {
            for(int j=0; j<arr.length;j++) {
                if(arr[i][j] == 1)
                    System.out.print(" Q"+(i+1) + " |");
                else
                    System.out.print("    |");
            }
            System.out.println();
        }
    }

    private static boolean backTrack(int[][] arr, int row) {
        if (row < 0 || row >= arr.length)
            return true;

        for (int col = 0; col < arr.length; col++) {
            if (isAttacked(arr, row, col)) {
                arr[row][col] = 1;
                if (backTrack(arr, row + 1)) {
                    if(row == (arr.length-1)) {
                        printQueuens(arr);
                        arr[row][col] = 0;
                    }
                    else {
                        return true;    
                    }
                } else {
                    arr[row][col] = 0;
                }
            }
        }
        return false;
    }

    private static boolean isAttacked(int[][] arr, int row, int col) {
        if (row == 0)
            return true;
        // check for same row
        for (int i = 0; i < arr.length; i++) {
            if (arr[row][i] == 1)
                return false;
        }
        // check for same col
        for (int i = 0; i <= row; i++) {
            if (arr[i][col] == 1)
                return false;
        }
        // check for diagonal
        // a.) Left dia
        int i = row - 1;
        int j = col - 1;
        while (i >= 0 && j >= 0) {
            if (arr[i][j] == 1)
                return false;
            i--;
            j--;
        }
        // b.) right dia
        i = row - 1;
        j = col + 1;
        while (i >= 0 && j < arr.length) {
            if (arr[i][j] == 1)
                return false;
            i--;
            j++;
        }
        return true;
    }
}
于 2019-07-24T13:52:33.733 回答