I'm new to Prolog and I'm trying write an in-order tree traversal where given a list of facts such as:
leftSubtree(9, 7).
leftSubtree(7, 1).
leftSubtree(1, -2).
leftSubtree(11, 9).
leftSubtree(16, 13).
leftSubtree(3, 2).
rightSubtree(9, 11).
rightSubtree(7, 6).
rightSubtree(1, 3).
rightSubtree(11, 16).
rightSubtree(16, 19).
I can use inOrder(9,X). to print out a the tree in order. I tried using the following code which works but was hoping for something simpler. Any tips or assistance would be appreciated.
inOrder(Root, X):-
\+ leftSubtree(Root,Left),
\+ rightSubtree(Root,Left) ->
X = [Root];
leftSubtree(Root,Left),
rightSubtree(Root,Right)->
inOrder(Left, LeftNode),
inOrder(Right, RightNode),
append(LeftNode,[Root|RightNode],X);
leftSubtree(Root,Left),
inOrder(Left, LeftNode),
append(LeftNode,[Root],X);
rightSubtree(Root,Right)->
inOrder(Right, RightNode),
append([Root],RightNode,X).