7

我的幂函数有什么问题?

pow(_,0,1).   
pow(X,Y,Z) :-
    pow(X,Y-1,X*Z).

?- pow(2,3,Z).
ERROR: Out of global stack
4

3 回答 3

18

你的 Y 没有递减,你不能使用像函数这样的谓词。您还必须将 Z 与乘法的结果统一起来。

pow(_,0,1).

pow(X,Y,Z) :- Y1 is Y - 1,
              pow(X,Y1,Z1), Z is Z1*X.

还有一个内置的幂函数会更快:

pow2(X,Y,Z) :- Z is X**Y.

另请注意, pow 不是最后一次调用,不能优化为仅使用一个堆栈帧。您应该将其重新表述为:

pow3(X,Y,Z) :- powend(X,Y,1,Z),!.

powend(_,0,A,Z) :- Z is A.
powend(X,Y,A,Z) :- Y1 is Y - 1, A1 is A*X, powend(X,Y1,A1,Z).
于 2009-09-19T15:53:20.810 回答
2
Predicates
fac(Integer,Integer,Integer).
Clauses
fac(X,N,X):- N=1,!.
fac(X,N,M):- N1=N-1,fac(X,N1,M1), M= X*M1.
Goal
fac(5,3,X).
于 2014-02-25T18:19:03.857 回答
1
DOMAINS
num=INTEGER

PREDICATES
nondeterm power(num,num,num)

CLAUSES
power(X,0,1).
power(X,P,F):-X>0,P1=P-1,power(X,P1,F1),F=X*F1.

GOAL
power(2,5,X).
于 2011-04-16T08:58:18.040 回答