My goal is to have this input:

L = [a,b,c], build_tree(L,T).

With this output:

L = [1,30,kth,5],
T = b(l(a),b(l(b),b(l(c)))) ? 

yes

And with this code, that counts the number of leaves in a tree:

leaves(l(X), [X]).
leaves(b(L1,L2),V):-
    leaves(L1,V1),
    leaves(L2,V2),
    append(V1,V2,V).

I can get the desired output by simply giving the function a list instead of a tree as input, eg:

L = [a,b,c], leaves(T,L).

The only problem here is that it takes the arguments in the wrong order (i.e. build_tree(T,L) instead of build_tree(L,T)).

So, how can I produce the same result, but simply swap the input arguments? I've tried every "obvious" solution (swapping around variables), but I'm guessing that it might not be as easy as it seems since it's a recursive method.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

if you have a predicate and want to re-orded the arguments, the simplest way (imo) is to write a wrapper predicate:

my_foo(X,Y,Z):-
    foo(Y,Z,X).

foo(X,Y,Z):- ....
link|improve this answer
It works perfectly :) – Keyser Sep 15 '11 at 6:49
feedback

Also, consider using DCGs:

leaves(l(X))     --> [X].
leaves(b(T1,T2)) --> leaves(T1), leaves(T2).
link|improve this answer
I'm not sure that was relevant to the question, but thanks for mentioning DCGs though. They seem like a viable option. – Keyser Jan 19 at 23:51
@keyser: Using DCGs here will linearize the translation cost, while append/3 can be easily quadratic! – false Mar 1 at 16:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.