我有一个使用prolog创建的函数,由于某种原因它总是为每个元素而不是一个列表创建多个列表,有人可以帮助我吗?
这是我写的:(问题是最后一个功能创建了许多列表)
father(_father,_child) :- parent(_father,_child), gender(_father,male).
mother(_mother,_child) :- parent(_mother,_child), gender(_mother,female).
couple(_woman,_man):- gender(_woman,female),gender(_man,male),parent(_man,_child),parent(_woman,_child).
parents(_woman,_man,_child) :- father(_man,_child),mother(_woman,_child).
count([],0).
count([H|T],N) :- count(T,N1) , N is N1+1.
child_to_couple(_woman,_man,_num):- couple(_woman,_man),findall(_child,parents(_woman,_man,_child),_childs),count(_childs,_num).
num_of_childs(_list):- couple(_woman,_man),setof(childrens(_man,_woman,_num),child_to_couple(_woman,_man,_num),_list).
数据示例:
gender(sagi,male).
gender(limor,female).
gender(yuval,male).
gender(gilad,male).
gender(shahaf,male).
gender(yaara,female).
parent(eyal,noam).
parent(shiri,yuval2).
parent(eyal,yuval2).
parent(shiri,yonatan).
parent(eyal,yonatan).
parent(shahaf,gan).
parent(yaara,gan).
但是当我跑步时
?- num_of_childs(_x).
我明白了:
_x = [childrens(mordechai, miriam, 1)] ;
_x = [childrens(salax, naima, 1)] ;
_x = [childrens(eli, bella, 2)] ;
_x = [childrens(eli, bella, 2)] ;
_x = [childrens(zvi, tova, 1)] ;
_x = [childrens(avram, yokeved, 1)] ;
_x = [childrens(haim, irit, 3)] ;
_x = [childrens(haim, irit, 3)] ;
_x = [childrens(haim, irit, 3)] ;
_x = [childrens(guy, pelit, 2)] ;
_x = [childrens(guy, pelit, 2)] ;
_x = [childrens(eyal, shiri, 3)] ;
_x = [childrens(eyal, shiri, 3)] ;
_x = [childrens(eyal, shiri, 3)] ;
_x = [childrens(sagi, limor, 2)] ;
_x = [childrens(sagi, limor, 2)] ;
_x = [childrens(shahaf, yaara, 1)] ;
而不是:
_x = [childrens(sagi, limor, 2),childrens(sagi, limor, 2),childrens(shahaf, yaara, 1),..........etc]
答案 0 :(得分:3)
num_of_childs/1
之前couple/2
来电setof/3
,因此您可以获得结果couple/2
返回的结果。由于child_to_couple/3
也会调用couple/2
,因此您根本不需要它。
num_of_childs(L) :- findall(childrens(M,W,N),child_to_couple(W,M,N),L).
但最大的问题是couple/2
,你写的方式,每个孩子总是成功一次。这会向上传播,以便child_to_couple/2
和num_of_childs/1
也能多次成功。
如果您更改为此
couple(W,M):-
gender(W,female), gender(M,male),
( parent(M,C), parent(W,C) -> true ; false ).
每对夫妻只能获得一个结果,无论孩子的数量如何。我觉得可能有更简单的方法来实现这一点,但我无法找到它。
?- num_of_childs(L).
L = [childrens(eyal,shiri,2),childrens(shahaf,yaara,1)] ? ;
no
增加:使用剪切会稍微简单但也更丑。