简体   繁体   English

计算 Prolog 中给定列表的正数列表

[英]Calculating List of positive numbers of a given list in Prolog

I tried resolving it by myself in the following way:我尝试通过以下方式自己解决:

list_of_positives(L1, L2) :- 
   list_of_positives(L1, L2, []).
list_of_positives([], L, L).
list_of_positives([H|T], L2, L3) :- 
   (   H > 0 
   ->  list_of_positives(T,L2,[H|L3])
   ;   list_of_positives(T,L2,L3) 
   ).

The problem with this solution is that I get as response a reversed list of positive numbers.这个解决方案的问题是我得到一个反向的正数列表作为响应。 Can someone help me to find a way to get the list in the "correct order"?有人可以帮我找到一种以“正确顺序”获取列表的方法吗?

You can solve the problem as follows:您可以按如下方式解决问题:

positives([], []).

positives([H|T], P) :-
   (   H > 0
   ->  P = [H|R]     % desired order!
   ;   P = R),
   positives(T, R) .

Example:例子:

?- positives([2,-3,6,-7,1,4,-9], P).
P = [2, 6, 1, 4].

You want to use a difference list , a non-closed, or open list .您想使用差异列表、非封闭列表开放列表 So, something like this:所以,像这样:

positives( []     , []     ) .  % An empty list has not positives, and closes the list.
positives( [N|Ns] , [N|Rs] ) :- % For a non-empty list, we prepend N to the result list
  N > 0,                        % - if N is positive
  positives(Ns,Rs)              % - and recurse down.
  .                             %
positives( [N|Ns] , Rs     ) :- % For non-empty lists, we discard N
  N =< 0,                       % - if N is non-positive
  positives(Ns,Rs)              % - and recurse down.
  .                             %

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM