Sorting algorithms/Quicksort: Difference between revisions

Content deleted Content added
Rahul (talk | contribs)
Rahul (talk | contribs)
Line 284: Line 284:


=={{header|Lucid}}==
=={{header|Lucid}}==
[http://i.csc.uvic.ca/home/hei/lup/06.html]
qsort(a) = if eof(first a) then a else follow(qsort(b0),qsort(b1)) fi
qsort(a) = if eof(first a) then a else follow(qsort(b0),qsort(b1)) fi
where
where