做一个小例子,我想在某个位置的列表中插入一个符号
domains
element = symbol
list = element*
position = integer
predicates
insert (element, position, list, list) %(input,input,input,output)
clauses
insert (E,_,[],[E]).
insert (E, 1,[H|T],[E|[H|T]]). %(I insert E on the "first" position)
% I get errors how E and T are not bound. I have no idea how to make them bound
insert (E,P,[H|T],[H1|T1]) :-
P > 1,
P1 = P - 1,
insert (E,P1,T,T1).
它不起作用......但我不知道为什么。嗯,它有点工作。我希望它向我展示,outputList = [NEW_LIST]
而不是时不时地展示。symbolName=_
outputList = [_,_,_,_]