Różnice

Różnice między wybraną wersją a wersją aktualną.

Odnośnik do tego porównania

pl:prolog:pllib:quicksort [2019/06/27 15:50] (aktualna)
Linia 1: Linia 1:
 +====== Quicksort ======
 +{{tag>​soritng algorithms recursion}}
 +===== Description =====
 +Program implements quicksort algorithm.
 +
 +**Source**: ​ PROLOG programming for artificial intelligence,​ 3rd Edition, Harlow, 2001, ISBN 0-201-40375-7.
 +===== Download =====
 +Program source code: {{quicksort.pl}}
 +===== Listing =====
 +<code prolog>
 +% Figure 9.2  Quicksort.
 +
 +
 +% quicksort( List, SortedList):​ sort List by the quicksort algorithm
 +
 +quicksort( [], []).
 +
 +quicksort( [X|Tail], Sorted) ​ :-
 +   ​split( X, Tail, Small, Big),
 +   ​quicksort( Small, SortedSmall),​
 +   ​quicksort( Big, SortedBig),
 +   conc( SortedSmall,​ [X|SortedBig],​ Sorted).
 +
 +split( X, [], [], []).
 +
 +split( X, [Y|Tail], [Y|Small], Big)  :-
 +   gt( X, Y), !,
 +   ​split( X, Tail, Small, Big).
 +
 +split( X, [Y|Tail], Small, [Y|Big]) ​ :-
 +   ​split( X, Tail, Small, Big).
 +
 +gt(A,B):-A > B.
 +
 +%  conc(L1,​L2,​L3):​ list L3 is th econcatenation of lists L1 and L2
 +
 +conc( [], L, L).
 +
 +conc( [X | L1], L2, [X | L3])  :-
 +  conc( L1, L2, L3).
 +</​code>​
 +===== Comments =====
  
pl/prolog/pllib/quicksort.txt · ostatnio zmienione: 2019/06/27 15:50 (edycja zewnętrzna)
www.chimeric.de Valid CSS Driven by DokuWiki do yourself a favour and use a real browser - get firefox!! Recent changes RSS feed Valid XHTML 1.0