实施法规。序言中的表达

发布于 2025-01-15 16:19:03 字数 755 浏览 0 评论 0原文

我有一个关于在序言中实现一些谓词的问题。(对于正则表达式。) 我需要实现 4 个谓词

我的实现是

sublist( Sublist, List ) :- append( [_, Sublist, _], List ). %true if SubList is a sublist of a List
match(one(List),W) :- sublist(List,W). %true if there is a single occurence of List
match(opt(_),[]).  %true if there are 0 or 1 occurences of List
match(opt(List),W) :- sublist(List,W).
match(star(_),[]).  %true if there are 0 or more occurences of List
%more occurences
match(plus(List),W) :- sublist(List,W). %true if there are 1 or more occurences of List
%more occurences

现在,我的问题是。

  1. 我不知道如何实现更多的发生。
  2. 例如,如果我想像 match([这里有更多表达式],S) 那样调用它 length(S,3),match([star[1],opt[2,3]],S) 这样可以吗?

编辑:
2)问题很容易解决,我只是遍历列表。

I have a question regarding implementing some predicates in prolog.(for regular expression.)
I need to implement 4 predicates

My implementation is

sublist( Sublist, List ) :- append( [_, Sublist, _], List ). %true if SubList is a sublist of a List
match(one(List),W) :- sublist(List,W). %true if there is a single occurence of List
match(opt(_),[]).  %true if there are 0 or 1 occurences of List
match(opt(List),W) :- sublist(List,W).
match(star(_),[]).  %true if there are 0 or more occurences of List
%more occurences
match(plus(List),W) :- sublist(List,W). %true if there are 1 or more occurences of List
%more occurences

Now, my problem is.

  1. I have no idea how to implement more occurences.
  2. If I wanted to call it like match([here would be more expressions],S), for example
    length(S,3),match([star[1],opt[2,3]],S) Would that work?

EDIT:
2) problem is easily fixable, I am just iterating through the list.

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

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

发布评论

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

评论(1

花间憩 2025-01-22 16:19:03

您的“match(one(...”可以使用:

exactly_one_solution(Template, Goal) :-
    % Check whether more than 1 solution exists
    bagof(Template, limit(2, Goal), Solutions),
    Solutions = [Template].

并且您的“match(plus(...”可以使用标准Prolog once/1),以确保大于零的匹配。

Your "match(one(..." can use:

exactly_one_solution(Template, Goal) :-
    % Check whether more than 1 solution exists
    bagof(Template, limit(2, Goal), Solutions),
    Solutions = [Template].

And your "match(plus(..." can use the standard Prolog once/1, to ensure more-than-zero matches.

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