catflap.org Online Dictionary Query |
7 definitions found
From The Free On-line Dictionary of Computing (27 SEP 03) : [ 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.]
From English Wiktionary: All languages (2023-07-27) : [ dictinfo.com:wikt-en-ALL-2023-07-27 ]
quicksort
n.
(lb en computing) A sorting algorithm that operates by recursively
partitioning the items to be sorted into two sets.
vb.
(lb en transitive computing) To sort with such an algorithm.
From English Wiktionary: English language only (2023-07-27) : [ dictinfo.com:wikt-en-en-2023-07-27 ]
quicksort
n.
(lb en computing) A sorting algorithm that operates by recursively
partitioning the items to be sorted into two sets.
vb.
(lb en transitive computing) To sort with such an algorithm.
From English Wiktionary: Western, Greek, and Slavonic languages only (2023-07-27) : [ dictinfo.com:wikt-en-Western_Greek_Slavonic-2023-07-27 ]
quicksort
n.
(lb en computing) A sorting algorithm that operates by recursively
partitioning the items to be sorted into two sets.
vb.
(lb en transitive computing) To sort with such an algorithm.
From English Wiktionary: Western languages only (2023-07-27) : [ dictinfo.com:wikt-en-Western-2023-07-27 ]
quicksort
n.
(lb en computing) A sorting algorithm that operates by recursively
partitioning the items to be sorted into two sets.
vb.
(lb en transitive computing) To sort with such an algorithm.
From English-suomi FreeDict+WikDict dictionary ver. 2023.05.29 : [ freedict:eng-fin ]
quicksort //ˈkwɪkˌsɔɹt//
pikajärjestäminen, pikalajittelu
sorting algorithm
From XDICT the English-Chinese dictionary : [ xdict ]
快速排序,快速分类
Questions or comments about this site? Contact dictionary@catflap.org
Access Stats