Prolog列出了差异

时间:2012-03-13 15:32:09

标签: list prolog symmetric-difference

我正在尝试在prolog中制作程序,它会做这样的事情:

diffSet([a,b,c,d], [a,b,e,f], X).
X = [c,d,e,f]

我写了这个:

diffSet([], _, []).
diffSet([H|T1],Set,Z):- member(Set, H), !, diffSet(T1,Set,Z).
diffSet([H|T], Set, [H|Set2]):- diffSet(T,Set,Set2).

但是这样我只能从第一个列表中获取元素。如何从第二个元素中提取元素?

@edit: 会员正在检查H是否在Set

member([H|_], H).
member([_|T], H):- member(T, H).

3 个答案:

答案 0 :(得分:3)

builtin从列表中删除元素:

diffSet([], X, X).

diffSet([H|T1],Set,Z):-
 member(H, Set),       % NOTE: arguments swapped!
 !, delete(T1, H, T2), % avoid duplicates in first list
 delete(Set, H, Set2), % remove duplicates in second list
 diffSet(T2, Set2, Z).

diffSet([H|T], Set, [H|Set2]) :-
 diffSet(T,Set,Set2).

答案 1 :(得分:1)

或仅使用内置插件。如果你想完成工作:

notcommon(L1, L2, Result) :-

    intersection(L1, L2, Intersec),
    append(L1, L2, AllItems),
    subtract(AllItems, Intersec, Result).

    ?- notcommon([a,b,c,d], [a,b,e,f], X).
    X = [c, d, e, f].

答案 2 :(得分:0)

故意避免为@chac提到的内置ins,这是一种不起眼的方式来完成这项工作。

notcommon([], _, []).

notcommon([H1|T1], L2, [H1|Diffs]) :-
    not(member(H1, L2)),
    notcommon(T1, L2, Diffs).

notcommon([_|T1], L2, Diffs) :-
    notcommon(T1, L2, Diffs).

alldiffs(L1, L2, AllDiffs) :-
    notcommon(L1, L2, SetOne),
    notcommon(L2, L1, SetTwo),
    append(SetOne, SetTwo, AllDiffs).


    ? alldiffs([a,b,c,d], [a,b,e,f], X).
    X = [c, d, e, f] .