标题:今天在网上看到一个解八皇后问题的解,看不懂原理
取消只看楼主
lwlls668
Rank: 2
等 级:论坛游民
帖 子:59
专家分:72
注 册:2010-4-9
结帖率:100%
 问题点数:0 回复次数:0 
今天在网上看到一个解八皇后问题的解,看不懂原理
#include "stdafx.h"

bool f(int Q[8], int dep)
{
for (int i = 0; i < dep; i++)
if ((Q[i] == Q[dep]) ||
(Q[i] - i == Q[dep] - dep) ||
(Q[i] + i == Q[dep] + dep))
return false;

return true;
}

void p(int Q[8])
{
for (int i = 0; i < 8; i++)
printf("%d\n", Q[i]);
}

int _tmain(int argc, _TCHAR* argv[])
{
int nCnt = 0;
int Q[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
int dep;
dep = 0;

while (dep > -1)
{
while (Q[dep] < 8)
{
if (f(Q, dep))
{
if (7 == dep)
{
nCnt ++;
printf("count:%d\n", nCnt);
p(Q);
}
else
break;
}
Q[dep] ++;
}

if ((Q[dep] > 7))
{
Q[dep] = 0;
dep --;
if (dep >= 0)
Q[dep] ++;
}
else
dep ++;
}

char c;
scanf(&c);

return 0;
}

搜索更多相关主题的帖子: 解八 皇后 原理 
2010-11-06 19:44



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-325190-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.962942 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved