序言:第一个重复值

编程入门 行业动态 更新时间:2024-10-21 17:26:37
本文介绍了序言:第一个重复值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我需要在列表中找到第一个重复的值.

I need to find the first duplicate value in a list.

prep(3,[1,3,5,3,5]).应该为真.

prep(5,[1,3,5,3,5]).应该为假.

我想检查与当前值和以前的列表成员是否相等,直到找到一个重复项,如果找到一个重复项,它将测试与X的相等性,但是我不知道如何在Prolog中做到这一点!

I thought checking for equality with the current value and the previous list members until I find a duplicate, if it finds one it will test for equality with X but I have no idea how to do that in Prolog!

我非常感谢您的帮助!谢谢

I appreciate any help! Thanks

推荐答案

这里是使用dif/2的纯版本,该版本实现了声音不平等. dif/2由B-Prolog,YAP-Prolog,SICStus-Prolog和SWI-Prolog提供.

Here is a pure version using dif/2 which implements sound inequality. dif/2 is offered by B-Prolog, YAP-Prolog, SICStus-Prolog and SWI-Prolog.

firstdup(E, [E|L]) :- member(E, L). firstdup(E, [N|L]) :- non_member(N, L), firstdup(E, L). member(E, [E|_L]). member(E, [_X|L]) :- member(E, L). non_member(_E, []). non_member(E, [F|Fs]) :- dif(E, F), non_member(E, Fs).

优点是它还可以与更通用的查询一起使用:

The advantages are that it can also be used with more general queries:

?- firstdup(E, [A,B,C]). E = A, A = B ; E = A, A = C ; E = C, B = C, dif(A, C) ; false.

在这里,我们得到三个答案:A是前两个答案中的重复项,但基于两个不同的理由:A可能等于B或C.在第三个答案中,B是重复项,但是只有C与A不同时,它才会是重复项.

Here, we get three answers: A is the duplicate in the first two answers, but on two different grounds: A might be equal to B or C. In the third answer, B is the duplicate, but it will only be a duplicate if C is different to A.

要理解其定义,请以箭头←的形式阅读:-.因此,右边是您所知道的,而左边是您所得出的结论.在开始时,朝该方向读取谓词通常会有些烦人,毕竟您可能会被诱惑遵循执行线程".但通常,此线程无处可寻-太复杂了,难以理解.

To understand the definition, read :- as an arrow ← So what is on the right-hand side is what you know and on the left is what you conclude. It is often in the beginning a bit irritating to read predicates in that direction, after all you might be tempted to follow "the thread of execution". But often this thread leads to nowhere – it gets too complex to understand.

第一条规则如下:

提供的E是列表L的元素,我们得出结论,[E|L]具有E作为第一个重复项. Provided E is an element of list L we conclude that [E|L] has E as first duplicate.

第二条规则如下:

提供的E是L的第一个副本(在这里不要惊慌,说我们不知道...),并且前提是N不是L的元素,我们得出结论,[N|L]具有E作为第一个重复项. Provided E is the first duplicate of L (don't panic here and say we don't know that ...) and provided that N is not an element of L we conclude that [N|L] has E as first duplicate.

许多Prolog系统中提供了member/2谓词,可以将non_member(X,L)定义为maplist(dif(X),L).因此,人们将firstdup/2定义为:

The member/2 predicate is provided in many Prolog systems and non_member(X,L) can be defined as maplist(dif(X),L). Thus one would define firstdup/2 rather as:

firstdup(E, [E|L]) :- member(E, L). firstdup(E, [N|L]) :- maplist(dif(N), L), firstdup(E, L).

更多推荐

序言:第一个重复值

本文发布于:2023-11-22 06:17:07,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1616291.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:第一个   序言

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!