我正在尝试在 java 中实现数独问题。目前我已经成功地实现了回溯的幼稚实现,它似乎正在工作,但我需要的是使用 AC3 算法。我在几个来源看到了它的伪代码:http ://en.wikipedia.org/wiki/AC-3_algorithm (一个例子),我想知道会有什么限制。
function arc-reduce (x, y)
bool change = false
for each vx in D(x)
find a value vy in D(y) such that vx and vy satisfy the constraint R2(x, y)
if there is no such vy {
D(x) := D(x) - vx
change := true
}
return change
更具体地说,我将 X、Y 作为 2 个节点发送:
class Node{
int i,j;
}
每个节点都保存我的数独表中元素的坐标。但是我对 R2 约束使用什么?
我目前的尝试:
Map m; //contains a map with structure <i,j,List> where i and j are the coordinates in the sudoku table, and List is the initial Domain of that spot on the table;
public boolean arc-reduce(Node x, Node y){
ArrayList l1 = m.get(x.i,x.j);
ArrayList l2 = m.get(y.i,y.j);
char one,two;
boolean found=false, change=false;
for(int a=0;a<l1.size();a++){
one = l1.get(a);
found = false;
for(int b=0;b<l2.size();b++){
two = l2.get(b);
if(one==two && x.i==y.i) //same char same line
found=true;
if(one==two && x.j==y.j) //same char same column
found=true;
}
if(found==false){
l1.remove(i);
change=true;
}
}
return change;
}
在当前状态下,我在应用后得到的修改域是不正确的。我的实施有缺陷吗?我会很感激一些提示,让我朝着正确的方向前进,因为这个问题给我带来了很大的麻烦。