diff options
author | Jed Barber <jjbarber@y7mail.com> | 2015-10-17 14:20:48 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2015-10-17 14:20:48 +1100 |
commit | 63c3043200de6b28a8c192f1b5625940435ea55e (patch) | |
tree | ab761edbbc71b2b2f28e0ef7e10b8adc58d44320 /strandsort.hs | |
parent | 5933f248c18914fbbce03102b340361a575eae3c (diff) |
Organised source code a bit, added makefile with clean target
Diffstat (limited to 'strandsort.hs')
-rw-r--r-- | strandsort.hs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/strandsort.hs b/strandsort.hs deleted file mode 100644 index 8226b79..0000000 --- a/strandsort.hs +++ /dev/null @@ -1,25 +0,0 @@ - - - -strandSort :: Ord a => [a] -> [a] -strandSort list = doStrandSort list [] [] [] - - - -doStrandSort :: Ord a => [a] -> [a] -> [a] -> [a] -> [a] -doStrandSort [] [] [] result = result -doStrandSort [] sublist unsorted result = doStrandSort unsorted [] [] (merge (reverse sublist) result) -doStrandSort input [] unsorted result = doStrandSort (tail input) [head input] unsorted result -doStrandSort input sublist unsorted result = - if (head input) >= (head sublist) - then doStrandSort (tail input) ((head input):sublist) unsorted result - else doStrandSort (tail input) sublist ((head input):unsorted) result - - - -merge :: Ord a => [a] -> [a] -> [a] -merge [] y = y -merge x [] = x -merge (x:xs) (y:ys) = if x <= y then x:(merge xs (y:ys)) else y:(merge (x:xs) ys) - - |