算法-八皇后问题

4 篇文章 0 订阅
public class Queen {


private int[] column;// 同栏是否有皇后,1表示有
private int[] rup;// 右上至左下是否有皇后
private int[] lup;// 左上至右下是否有皇后
private int[] queen;// 解答
private int num;// 解答编号

public Queen() {
column = new int[8 + 1];
rup = new int[(2 * 8) + 1];
lup = new int[(2 * 8) + 1];

for (int i = 1; i <= 8; i++)
column[i] = 1;

for (int i = 1; i <= (2 * 8); i++)
rup[i] = lup[i] = 1;

queen = new int[8 + 1];
}

public void backtrack(int i) {
if (i > 8) { //代表已经超过8列
showAnswer();
} else {
for (int j = 1; j <= 8; j++) {
if ((column[j] == 1) && (rup[i + j] == 1) && (lup[i - j + 8] == 1)) {  //column[j]=1 竖列为只选一个   rup[i+j]=1 正斜对角  lup[i-j+8]反斜对角
queen[i] = j;
// 设定为占用
column[j] = rup[i + j] = lup[i - j + 8] = 0;
backtrack(i + 1);//回溯
column[j] = rup[i + j] = lup[i - j + 8] = 1;
}
}
}
}
//打印
protected void showAnswer() {
num++;
System.out.println("\n解答" + num);


for (int y = 1; y <= 8; y++) {
for (int x = 1; x <= 8; x++) {
if (queen[y] == x) {
System.out.print("Q");
} else {
System.out.print(".");
}
}
System.out.println();
}
}

public static void main(String[] args) {
Queen queen = new Queen();
queen.backtrack(1);
}

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值