Created
June 14, 2013 23:12
-
-
Save Flushot/5786000 to your computer and use it in GitHub Desktop.
Messing around with Haskell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| addVectors :: (Num a) => (a, a) -> (a, a) -> (a, a) | |
| addVectors (x1, y1) (x2, y2) = (x1 + x2, y1 + y2) | |
| first :: (a, b, c) -> a | |
| first(x, _, _) = x | |
| second :: (a, b, c) -> b | |
| second (_, y, _) = y | |
| third :: (a, b, c) -> c | |
| third (_, _, z) = z | |
| head' :: [a] -> a | |
| head' [] = error "Can't head an empty list!" | |
| head' (x:_) = x | |
| head'' :: [a] -> a | |
| head'' xs = case xs of [] -> error "No head for empty lists!" | |
| (x:_) -> x | |
| tell :: (Show a) => [a] -> String | |
| tell [] = "The list is empty" | |
| tell (x:[]) = "The list has one element: " ++ show x | |
| tell (x:y:[]) = "The list has two elements: " ++ show x ++ " and " ++ show y | |
| tell (x:y:_) = "This list is long. The first two elements are: " ++ show x ++ " and " ++ show y | |
| length' :: (Num b) => [a] -> b | |
| length' [] = 0 | |
| length' (_:xs) = 1 + length' xs | |
| length'' :: (Num b) => [a] -> b | |
| length'' [] = 0 | |
| length'' a = sum [1 | _ <- a] | |
| sum' :: (Num a) => [a] -> a | |
| sum' [] = 0 | |
| sum' (x:xs) = x + sum' xs | |
| capital :: String -> String | |
| capital "" = "Empty string!" | |
| capital all@(x:xs) = "The first letter of " ++ all ++ " is " ++ [x] | |
| bmiTell :: (RealFloat a) => a -> a -> String | |
| bmiTell weight height | |
| | bmi <= skinny = "You're underweight, you emo, you!" | |
| | bmi <= normal = "You're supposedly normal. Pfft, I bet you're ugly!" | |
| | bmi <= fat = "You're fat! Lose some weight, fatass!" | |
| | otherwise = "You're a whale, and belong in Sea World!" | |
| where bmi = weight / height ^ 2 | |
| (skinny, normal, fat) = (18.5, 25.0, 30.0) | |
| calcBmis :: (RealFloat a) => [(a, a)] -> [a] | |
| calcBmis xs = [bmi w h | (w, h) <- xs] | |
| where bmi weight height = weight / height ^ 2 | |
| calcBmis' :: (RealFloat a) => [(a, a)] -> [a] | |
| calcBmis' xs = [bmi | (w, h) <- xs, let bmi = w / h ^ 2] | |
| max' :: (Ord a) => a -> a -> a | |
| max' a b | a > b = a | otherwise = b | |
| initials :: String -> String -> String | |
| initials firstname lastname = [f] ++ ". " ++ [l] ++ "." | |
| where (f:_) = firstname | |
| (l:_) = lastname | |
| maximum' :: (Ord a) => [a] -> a | |
| maximum' [] = error "maximum of empty list" | |
| maximum' [x] = x | |
| maximum' (x:xs) = max x (maximum' xs) | |
| replicate' :: (Num i, Ord i) => i -> a -> [a] | |
| replicate' n x | |
| | n <= 0 = [] | |
| | otherwise = x:replicate' (n-1) x | |
| take' :: (Num i, Ord i) => i -> [a] -> [a] | |
| take' n x | |
| | n <= 0 = [] | |
| take' _ [] = [] | |
| take' n (x:xs) = x:take' (n-1) xs | |
| reverse' :: [a] -> [a] | |
| reverse' [] = [] | |
| reverse' (x:xs) = reverse' xs ++ [x] | |
| repeat' :: a -> [a] | |
| repeat' x = x:repeat' x | |
| zip' :: [a] -> [b] -> [(a, b)] | |
| zip' [] _ = [] | |
| zip' _ [] = [] | |
| zip' (x:xs) (y:ys) = (x, y):zip' xs ys | |
| elem' :: (Eq a) => a -> [a] -> Bool | |
| elem' _ [] = False | |
| elem' e (x:xs) | |
| | x == e = True | |
| | otherwise = e `elem'` xs | |
| quicksort :: (Ord a) => [a] -> [a] | |
| quicksort [] = [] | |
| quicksort (x:xs) = | |
| let smallerSorted = quicksort [a | a <- xs, a <= x] | |
| biggerSorted = quicksort [a | a <- xs, a > x] | |
| in smallerSorted ++ [x] ++ biggerSorted |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment