This website works better with JavaScript
Home
Esplora
Aiuto
Accedi
radu
/
LaTeX-examples
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
d95b41b19f
Rami (Branch)
Tag
master
LaTeX-examples
/
documents
/
Programmierparadigmen
/
scripts
/
haskell
/
qsort.hs
qsort.hs
115 B
Cronologia
Originale
1
2
3
4
qsort [] = []
qsort (p:ps) = (qsort (filter (\x -> x<=p) ps))
++ p:(qsort (filter (\x -> x> p) ps))