zhaw-fup/Exercises/exercise-4/Solution.hs

80 lines
1.7 KiB
Haskell
Raw Normal View History

2024-06-16 09:08:56 +00:00
--------------------
-- Exercise 1
--------------------
prim c g 0 x = c x
prim c g n x = g (f (n - 1) x) (n - 1) x
where
f = prim c g
m2 :: Integer -> () -> Integer
m2 n x = prim (\_ -> 0) (\a -> \n -> \x -> a + 2) n x
-- >>> print (m2 8 ())
-- 16
--
e2 :: Integer -> () -> Integer
e2 n x = prim (\_ -> 1) (\a -> \n -> \x -> a * 2) n x
-- >>> print (e2 4 ())
-- 16
--
exp :: Integer -> Integer -> Integer
exp x n = prim (\_ -> 1) (\a -> \n -> \x -> a * x) n x
-- >>> print (Main.exp 2 3)
-- 8
--
fact :: Integer -> () -> Integer
fact n x = prim (\_ -> 1) (\a -> \n -> \x -> a * (n + 1)) n x
-- >>> print (fact 3 ())
-- 6
--
--------------------
-- Exercise 2
--------------------
f g x
| x == 0 = g x
| otherwise = g $ f g (x - 1)
-- Nicht endrekursiv
length xs = case xs of
[] -> 0
x : xs -> (+1) $ Main.length xs
-- ist endrekursiv
length' ls = aux
$ map ( const 1)
$ ls
where
aux ys = case ys of
[] -> 0
[x] -> x
x : xs -> aux $ map (\y -> (+1) x ) xs
-- length' und aux sind nicht endrekursiv
2024-06-16 12:37:03 +00:00
-- sieve :: ( a -> a -> Bool ) -> [ a ] -> [ a ]
-- sieve pred xs = case xs of
-- [] -> []
-- x : xs -> x :( sieve pred $ filter ( pred x ) xs )
sieve :: (a -> a -> Bool) -> [a] -> [a]
sieve pred xs = realSieve [] xs
where
realSieve acc [] = acc
realSieve acc (x : xs) = realSieve (acc ++ [x]) (filter (pred x) xs)
-- >>> sieve (\ x -> \ y -> y > x) [1, 2, 3, 1, 2, 9, 7]
-- [1,2,3,9]
--
2024-06-16 12:56:36 +00:00
sieveC :: (a -> a -> Bool) -> [a] -> [a]
sieveC pred xs = realSieve id xs
where
realSieve f [] = f []
realSieve f (x : xs) = realSieve (\ items -> filter (pred x) (f items)) xs
-- >>> sieve (\ x -> \ y -> y > x) [6, 2, 3, 1, 2, 9, 7]
-- [6,9]
--