Prolog:查找列表中元素的最后一个索引

发布于 2024-12-03 00:01:06 字数 109 浏览 0 评论 0原文

假设我有一个列表 [1,2,1,3,2,0,8,3,1],我想找到最后 3 个的索引,即 7, 如何在prolog中做到这一点?

Suppose I have a list [1,2,1,3,2,0,8,3,1],I want to find the index of the last 3 which is 7, How to do it in prolog?

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

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

发布评论

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

评论(1

枉心 2024-12-10 00:01:06

像这样的东西

last(List, Needle, Ret) :- last1(List, Needle, 0, -1, Ret).

last1([H | T], N, Idx, Acc, Ret) :- Idx2 is Idx + 1, (H == N, !, last1(T, N, Idx2, Idx, Ret); last1(T, N, Idx2, Acc, Ret)).
last1([], _, _, Acc, Acc).

遍历整个列表,维护最后看到的针的索引。这是作业吗?

Something like

last(List, Needle, Ret) :- last1(List, Needle, 0, -1, Ret).

last1([H | T], N, Idx, Acc, Ret) :- Idx2 is Idx + 1, (H == N, !, last1(T, N, Idx2, Idx, Ret); last1(T, N, Idx2, Acc, Ret)).
last1([], _, _, Acc, Acc).

This traverses the whole list, maintaining the index of the last needle seen. Is this homework?

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