作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在为大学考试学习 Prolog,但我在这个练习中遇到了问题:
Implement the predicate
not_member(X,L)
that is TRUE if the elementX
does not belong to the listL
.
% FACT (BASE CASE): It is TRUE that X is not in the list if the list is empty.
not_member(_,[]).
% RULE (GENERAL CASE): If the list is non-empty, I can divide it in its Head
% element and the sublist Tail. X does not belong to the list if it is different
% from the current Head element and if it does not belong to the sublist Tail.
not_member(X,[Head|Tail]) :-
X =\= Head,
not_member(X,Tail).
2 ?- not_member(4, [1,2,3]).
true.
3 ?- not_member(1, [1,2,3]).
false.
4 ?- not_member(a, [a,b,c]).
ERROR: =\=/2: Arithmetic: `a/0' is not a function
最佳答案
让我们检查文档!
(=\=)/2是算术运算符。
+Expr1 =\= +Expr2 True if expression Expr1 evaluates to a number non-equal to Expr2.
not_member(_, []) :- !.
not_member(X, [Head|Tail]) :-
X \= Head,
not_member(X, Tail).
?- not_member(d, [a,b,c]).
true.
关于prolog - 实现一个 Prolog 谓词,说明一个元素是否属于一个列表。非数字列表的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15865189/
我是一名优秀的程序员,十分优秀!