prolog:将列表转换为字典?

发布于 2025-01-21 20:50:10 字数 554 浏览 0 评论 0原文

I am searching some swi-prolog predicate:

list_to_dict(List, Dict) :- ??

Which is able to convert a list like

l = [a, b, c, d]

into a Prolog dict d whose keys are equal to the list indexes starting at 1. In this example above d is of form:

d = dict_label{1:a,2:b,3:c,4:d}

I would appreciate, if you can帮助我找到一些有关该问题的一般且希望简短的解决方案。

I am searching some swi-prolog predicate:

list_to_dict(List, Dict) :- ??

Which is able to convert a list like

l = [a, b, c, d]

into a Prolog dict d whose keys are equal to the list indexes starting at 1. In this example above d is of form:

d = dict_label{1:a,2:b,3:c,4:d}

I would appreciate, if you can help me to find some general and hopefully short solution of that problem.

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

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

发布评论

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

评论(1

凉栀 2025-01-28 20:50:10

您可以使用以下谓词:

% list_to_dict(+Values, +Tag, -Dict)

  list_to_dict(Values, Tag, Dict) :-
      findall(Key-Value, nth1(Key, Values, Value), Pairs),
      dict_create(Dict, Tag, Pairs).

示例:

?- list_to_dict([a,b,c,d], dict_label, Dict).
Dict = dict_label{1:a, 2:b, 3:c, 4:d}.

You can use the following predicate:

% list_to_dict(+Values, +Tag, -Dict)

  list_to_dict(Values, Tag, Dict) :-
      findall(Key-Value, nth1(Key, Values, Value), Pairs),
      dict_create(Dict, Tag, Pairs).

Example:

?- list_to_dict([a,b,c,d], dict_label, Dict).
Dict = dict_label{1:a, 2:b, 3:c, 4:d}.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文