Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org

Quicksort

You are here: irt.org | FOLDOC | Quicksort

A sorting algorithm with O(n log n) average time complexity.

One element, x of the list to be sorted is chosen and the other elements are split into those elements less than x and those greater than or equal to x. These two lists are then sorted recursively using the same algorithm until there is only one element in each list, at which point the sublists are recursively recombined in order yielding the sorted list.

This can be written in Haskell:

	qsort               :: Ord a => [a] -> [a]
	qsort []             = []
	qsort (x:xs)         = qsort [ u | u<-xs, u=x ]

[Mark Jones, Gofer prelude.]

Nearby terms: Quick Mail Queueing Protocol « Quick Mail Transfer Protocol « Quicksilver « Quicksort » QuickTime » quiesce » quiesce time

FOLDOC, Topics, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, ?, ALL

©2018 Martin Webb