从列表中取出偶数

发布于 2025-01-16 22:55:56 字数 442 浏览 0 评论 0原文

定义规则filterevens(LST0, LST1)。该规则描述了列表LST0如何与列表LST1相关,列表LST1仅由LST0的偶数元素组成。

我需要从列表中选取偶数,我得到了这个:

filterevens([],[]).
filterevens([H|T],R):-
    (  0 is mod(H,2) 
    -> R = [H|T2]
    ;  R = T2
    ),
    filterevens(T,T2).

当输入时

?- filterevens( [2,4] ,A).

它可以给我正确的答案。但如果我尝试

?- filterevens(A,[2,4]).

它会导致错误。那么我应该怎么做才能在一条规则中同时完成这两项任务呢?

Define the rule filterevens(LST0, LST1). This rule describes how the list LST0 relates to the list LST1, which consists of only even elements of LST0.

I need to pick up the even numbers from a list, And I got this:

filterevens([],[]).
filterevens([H|T],R):-
    (  0 is mod(H,2) 
    -> R = [H|T2]
    ;  R = T2
    ),
    filterevens(T,T2).

when the input is

?- filterevens( [2,4] ,A).

it can give me the correct answer. But if I tried

?- filterevens(A,[2,4]).

it cause an error. So what should I do so that I can do both in just one rule?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷清清 2025-01-23 22:55:56

在没有 ; 的情况下完整地写出这些情况就足以使其在基本情况下工作:

filterevens([], []).

filterevens([H|T], [H|TEvens]):-
    0 is H mod 2,
    filterevens(T, TEvens).

filterevens([H|T], TEvens):-
    M is H mod 2,
    dif(M, 0),
    filterevens(T, TEvens).

那么:

?- filterevens(A, [2,4]).
A = [2, 4]

一般情况下, A 可以是任何长度 [1, 2,1,4][1,1,1,1,1,2,4],使用 24 因为只有偶数会更困难。如果您可以限制列表的成员,例如“1 到 1,000 之间的正整数”,您可以使用 clpfd 库构建一些东西。

Writing the cases out in full without ; is enough for it to work in the basic case:

filterevens([], []).

filterevens([H|T], [H|TEvens]):-
    0 is H mod 2,
    filterevens(T, TEvens).

filterevens([H|T], TEvens):-
    M is H mod 2,
    dif(M, 0),
    filterevens(T, TEvens).

Then:

?- filterevens(A, [2,4]).
A = [2, 4]

The general case, A could be any length [1,2,1,4] or [1,1,1,1,1,2,4], generating all possible lists with 2, 4 as the only even numbers would be more difficult. You could build something with the clpfd library if you could constrain the members of the list, e.g. to "positive integers between 1 and 1,000".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文