Skip to content

Instantly share code, notes, and snippets.

@Noble-Mushtak
Created January 5, 2019 03:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Noble-Mushtak/e18aa8fd8d65d71e18408bb9ca47721e to your computer and use it in GitHub Desktop.
Save Noble-Mushtak/e18aa8fd8d65d71e18408bb9ca47721e to your computer and use it in GitHub Desktop.
% Finds min between two numbers.
min_nums(X,Y,X) :- X =< Y.
min_nums(X,Y,Y) :- Y =< X.
% Finds min of list.
% Obviously, if there's only one item, then that's the minimum.
min([Item|[]],Item).
% If there's more than one item, find the minimum of the tail,
% then take the minimum of the tail's minimum and the head element.
min([Head|Tail],Min) :-
min(Tail, PossibleMin),
min_nums(Head, PossibleMin, Min).
% Deletes element from list exactly once if it is in the list.
% Obviously, don't delete anything from empty list.
delete_once([],_,[]).
% If you find Elem, then you are left with just the Tail.
delete_once([Elem|Tail],Elem,Tail).
% If the head element is not Elem,
% then add it to the result and keep looking for Elem.
delete_once([Head|Tail],Elem,[Head|Result]) :-
\+ Head is Elem,
delete_once(Tail,Elem,Result).
% Implements selection sort algorithm.
% Obviously, empty list is already sorted.
selection_sort([],[]).
% Add the minimum to the result, delete it from the array,
% and then sort the resulting array.
selection_sort(Arr, [Min|Result]) :-
min(Arr, Min),
delete_once(Arr, Min, Arr2),
selection_sort(Arr2, Result).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment