Prolog:查找列表中元素的最后一个索引
假设我有一个列表 [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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样的东西
遍历整个列表,维护最后看到的针的索引。这是作业吗?
Something like
This traverses the whole list, maintaining the index of the last needle seen. Is this homework?