28.01.2015 Views

AI 08226 Prolog (PROgramming in LOGic) - Department of ...

AI 08226 Prolog (PROgramming in LOGic) - Department of ...

AI 08226 Prolog (PROgramming in LOGic) - Department of ...

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Bubble Sort<br />

157<br />

bubblesort(List, , Sorted):-<br />

swap(List, List1), !,<br />

% A Useful Swap<br />

bubblesort(List1, Sorted).<br />

bubblesort(Sorted, , Sorted). % Boundary<br />

swap( [ X, Y | Rest], [Y, X | Rest] ):-<br />

gt(X, , Y).<br />

swap( [ Z | Rest1 ], [ Z | Rest2 ]):-<br />

swap(Rest1, Rest2).

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!