八皇后問題

2021-10-06 07:33:51 字數 714 閱讀 7720

八皇后問題

參考了他人的,自己動手寫寫

public class test8queen

public static void findqueen(int row)

//深度回溯,遞迴演算法

for (int column = 0; column < 8; column++)

}}//檢查皇后擺放是否合適(簡化只需要迴圈一次)

public static boolean check(int row, int column)

//檢查左斜對角線

if ((columnt = column - (row - rowt)) >= 0 && area[rowt][columnt] == 1)

//檢查右斜對角線

if ((columnt = column + (row - rowt)) < 8 && area[rowt][columnt] == 1)

}return true;

}//檢查皇后擺放是否合適

public static boolean check2(int k,int j)

}for(int i=k-1,m=j-1; i>=0 && m>=0; i--,m--)

}for(int i=k-1,m=j+1; i>=0 && m<=7; i--,m++)

}return true;

}參考 [1]:

八皇后問題

八皇后問題 ackarlix 八皇后問題是乙個古老而著名的問題,是回溯演算法的典型例題。該問題是十九世紀著名的數學家高斯 1850 年提出 在 8x8格的西洋棋上擺放八個皇后,使其不能互相攻擊,即任意兩個皇后都不能處於同一行 同一列或同一斜線上,問有多少種擺法。高斯認為有 76種方案。1854 年在...

八皇后問題

include iostream.h int a 8 8 棋盤 int r 8 結果 int i,j int count 0 void init i j 0 int judge int x,int y for int mi x 1,mj y mi 1 mi for int ri x 1,rj y 1...

八皇后問題

package quess 由於八個皇后的任意兩個不能處在同一行,那麼這肯定是每乙個皇后佔據一行。於是我們可以定義乙個陣列columnindex 8 陣列中第i個數字表示位於第i行的皇后的列號。先把columnindex的八個數字分別用0 7初始化,接下來我們要做的事情就是對陣列columninde...