In prolog how do I insert X in its correct position in a sorted list?

My Attempt:

insert(X,[Y|Rest],[X,Y|Rest]):-
X @< Y;
insert(X,Rest,BiggerRest).
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You're on the right track, but you need to make this three cases.

insert(X, [], [X]).
insert(X, [Y|Rest], [X,Y|Rest]) :-
    X @< Y, !.
insert(X, [Y|Rest0], [Y|Rest]) :-
    insert(X, Rest0, Rest).
link|improve this answer
Awesome thanks! Is it possible to do the same procedure using the built in predicate setof? – General_9 Jan 25 at 14:43
@General_9: I'm not sure what you mean. – larsmans Jan 25 at 14:53
Isn't the built in predicate setof essentially builds up an ordered list of items that do not include duplicates. Is there any way to piggyback of that functionality when trying to insert one element into an ordered list? – General_9 Jan 25 at 14:57
@General_9: I guess you could just do sort([X|Xs], Sorted) to insert X in the right place. That would take O(n lg n) time though, while the above takes O(n). – larsmans Jan 25 at 15:04
feedback

Your Answer

 
or
required, but never shown

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