Prolog 列表问题

发布于 2024-12-05 17:30:51 字数 124 浏览 0 评论 0原文

我正在使用 Flex,那里有一个名为 University 的框架,它有大约 100 个实例。我想将它们存储在一个列表中,该列表是 Prolog 而不是 Ksl 的一部分,并执行搜索操作。例如。该列表应仅包含位于美国的大学。谢谢 :)

I am working with flex and there I have a frame called university and it has about 100 instances. I would like to store them in a list which is part of Prolog not Ksl and perform search operations. eg. the list should contain only those universities whose location is USA. thanks :)

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

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

发布评论

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

评论(1

舂唻埖巳落 2024-12-12 17:30:51

要将数据存储在 Prolog 中,通常将其添加到事实数据库中:

university(mit).
university(carnegie_mellon).

然后您可以自由地使用 Prolog 的内置搜索来实现谓词,或者使用它通过 setof/3 为您提供事实列表code> 或 findall/3,例如:

?- findall(university(X), university(X), Universities).
Universities = [university(mit), university(carnegie_mellon)].

您当然可以让 university 事实携带更多数据并使用它来过滤:

university('Oxford', uk).
university('MIT', usa).

?- findall(X, (university(X, uk)), Universities).
Universities = ['Oxford'].

这些是非常基本的示例。恐怕您可能需要花一些时间阅读 Prolog 教程才能进一步了解。听起来您需要对这种语言有更强的掌握才能完成您的作业,这确实与您所知道的任何其他语言不同。

To store data in Prolog, you generally add it to the fact database:

university(mit).
university(carnegie_mellon).

Then you have the freedom to either implement your predicates with Prolog's built in search, or use it to give you a list of facts with setof/3 or findall/3, such as:

?- findall(university(X), university(X), Universities).
Universities = [university(mit), university(carnegie_mellon)].

You can certainly make university facts carry more data and use that to filter:

university('Oxford', uk).
university('MIT', usa).

?- findall(X, (university(X, uk)), Universities).
Universities = ['Oxford'].

These are very rudimentary examples. I'm afraid you are probably going to have to spend some time going through a Prolog tutorial to get further. It sounds like you will need a stronger command of this language to complete your assignment, which really is nothing like any other language you know.

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