I experience some issues when I'm training prolog exercises,the problem below is,
The predicate defines what it means to be a tree, and can be used to test whether a term is a tree:
tree(t(L,R)) :- tree(L), tree(R).
tree(T) :- T\=t(_ , _).
By using this predicate you can find an element in a tree, (called a leaf):
leaf(t(L,R),E) :- leaf(L,E); leaf(R,E).
leaf(T,T) :- T\=t(_ , _).
So here have two problem, first is write predicate elements/2
that produces a list of the elements as they are found in the leafs of a tree in the first argument in a left-to-right order!
The second is write a predicate same content/2
that succeeds exactly when two trees contain the same elements in the same order! Duplicates are significant.
Hope can get anyone good at prolog can help me, thanks a lot.
Both
tree/1
andleaf/1
are defaulty1,2! Why not use a cleaner representation like this?Note that:
is_tree/1
is more versatile thantree/1
andleaf/1
: it can generate as well as test trees—and even do a little of both (if the argument is partially instantiated).is_tree/1
never gives logically unsound answers—no matter which "mode" it is used in.Some sample uses of
is_tree/1
:Coming back to your question on how to implement
elements/2
andcontent/2
... Use dcg!Sample query:
Footnote 1: This rock-solid treatise on teaching Prolog discusses many common obstacles, including defaultyness.
Footnote 2: In this answer @mat explains on how defaultyness in Prolog impedes declarative debugging and reasoning.