轉:八皇后問題 java實現,演算法兩則

herosoft發表於2009-07-09

八皇后問題是一個古老而著名的問題,是回溯演算法的典型例題。該問題是19世紀著名的數學家高斯1850年提出:在8×8格的國際象棋盤上擺放8個皇后,使其不能互相攻擊,即任意兩個皇后都不能處於同一行、同一列或同一斜線上,問有多少種擺法。[英國某著名計算機圖形影像公司面試題]

演算法1:典型的回朔演算法。列印出8皇后的最終排列。
解析:遞迴實現n皇后問題。
演算法分析:
陣列a、b、c分別用來標記衝突,a陣列代表列衝突,從a[0]~a[7]代表第0列到第7列。如果某列上已經有皇后,則為1,否則為0。
陣列b代表主對角線衝突,為b[i-j+7],即從b[0]~b[14]。如果某條主對角線上已經有皇后,則為1,否則為0。
陣列c代表從對角線衝突,為c[i+j],即從c[0]~c[14]。如果某條從對角線上已經有皇后,則為1,否則為0。

[@more@]

package org.luyang.csdn;

public class EightQueue {
String[][] rec = new String[8][8];

int[] a = new int[8];

int[] b = new int[15];

int[] c = new int[15];

int sum;

public EightQueue() {
super();
for (int i = 0; i < this.rec.length; i++) {
for (int j = 0; j < this.rec[i].length; j++) {
this.rec[i][j] = "○";
}
}

}

public void prt() {
System.out.println("");
for (int i = 0; i < this.rec.length; i++) {
for (int j = 0; j < this.rec[i].length; j++) {
System.out.print(this.rec[i][j] + " ");
}
System.out.println("");
}

System.out.println("");
}

/**
* set the queen of line i
*
* @param i
*/
void qu(int i) {
for (int iColumn = 0; iColumn < 8; iColumn++) {
if (a[iColumn] == 0 && b[i - iColumn + 7] == 0
&& c[i + iColumn] == 0) {
// do not conflict
rec[i][iColumn] = "●";
a[iColumn] = 1;
b[i - iColumn + 7] = 1;
c[i + iColumn] = 1;
if (i < 7)
qu(i + 1);
else {
// sysout
prt();
sum++;
}
// whatever how to put the queen, mission is impossible. rollback
rec[i][iColumn] = "○";
a[iColumn] = 0;
b[i - iColumn + 7] = 0;
c[i + iColumn] = 0;
}
}
}

/**
* 8 queen
* @param args
*/
public static void main(String[] args) {
EightQueue eq = new EightQueue();
eq.qu(0);
System.out.println(eq.sum);
}
}


演算法2,也不知道是從哪裡剽竊過來的了,該演算法沒有最終答應出排列組合,僅僅給出有多少種組合,但是演算法確實十分奧妙,提供出來大家分享。

package org.luyang.csdn;

public class Queen {
static int sum = 0, upperlim = 1;

private static void test(int row, int ld, int rd) {

if (row != upperlim) {
int pos = upperlim & ~(row | ld | rd);
while (pos != 0) {
int p = pos & -pos;
pos -= p;
test(row + p, (ld + p) << 1, (rd + p) >> 1);
}
} else
sum++;
}

public static void main(String[] args) {
int n = 8;

if (args.length == 1)
n = Integer.parseInt(args[0]);

long tm = System.currentTimeMillis();
if ((n < 1) || (n > 32)) {
System.out.println(" heh..I can't calculate that.");
System.exit(-1);
}
System.out.println(n + " Queens");
upperlim = (upperlim << n) - 1;

test(0, 0, 0);
System.out.println("Number of solutions is " + sum + ", "
+ (System.currentTimeMillis() - tm) + " milliseconds");
}
}


本文來自CSDN部落格,轉載請標明出處:http://blog.csdn.net/luyang1016/archive/2007/03/01/1517909.aspx

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/220284/viewspace-1023983/,如需轉載,請註明出處,否則將追究法律責任。

相關文章