Title: Functional%20Programming%20%20in%20Haskell
1 Functional Programming in Haskell
- Motivation through Concrete Examples
- Adapted from Lectures by
- Simon Thompson
-
2Functional Programming
- Given the functions
- above invertColour flipH
- sideBySide superimpose flipV
- and the horse picture,
- how do you get
(expression and evaluation)
3Definitions in Haskell
- name Type
- name expression
-
- blackHorse Picture
- blackHorse invertColour horse
- rotate Picture -gt Picture
- rotate pic flipH (flipV pic)
4Higher-level
- Evaluation is about expressions and values, not
storage locations. - No need to allocate/deallocate storage garbage
collection. - Values don't change over program execution
contrast - xx1 etc. of Java, C,
-
- instead we describe relations between values by
means of (fixed) functions.
5Declarative proofs possible
- Programs describe themselves
- square n nn double n 2n
- 'The square of n is nn, for every integer n.'
Programs are equations. So we can write proofs
using the definitions. square (double n)
square (2n) (2n)(2n) 22nn double
(double (square n))
6Evaluation freedom
- Evaluation can occur in any order ...
- (4-3)(2-1) (4-3)(2-1) (4-3)(2-1)
- (4-3)1 1(2-1) 11
- 11 11 2
- 2 2
and can choose to evaluate only what is needed,
when it is needed lazy evaluation (more
later). Can also evaluate in parallel
efficiently?
7History
- First 'functional' language, LISP, defined c.
1960 popular in AI in 70s/80s. - Now represented best by Scheme.
- Weakly typed allows side-effects and eval.
- Next generation ML (1980), Miranda (1985) and
Haskell (1990). - Strongly-typed ML allows references and thus
side-effects. - Miranda and Haskell pure and lazy.
- FP (1982) heroic experiment by Backus (FORTRAN,
ALGOL).
8Haskell and Hugs
- Named after Haskell Brooks Curry mathematician
and logician inventor of the ?-calculus. - Haskell 98 is the recent 'standard' version of
Haskell. - Various implementations Hugs (interpreter for
Windows, Mac, Unix) and GHC, NHC, HBC
(compilers). - http//www.haskell.org/
9Basics guards and base types
How many of three integers are equal
? howManyEqual Int -gt Int -gt Int -gt
Int howManyEqual n m k nm mk
3 nm mk kn 2
otherwise 1
10Regular and literate scripts
In a regular script there are definitions and
comments -- FirstScript.hs -- 5 October
2000 -- Double an integer. double Int -gt
Int double n 2n Everything is program, except
comments beginning --.
In a literate script there are comments and
definitions FirstLit.lhs 5 October
2000 Double an integer. gt double Int -gt
Int gt double n 2n Everything is comment,
except program beginning gt .
11How many pieces with n cuts?
12How many pieces with n cuts?
- No cuts 1 piece.
- With the nth cut, you get n more pieces
- cuts Int -gt Int
- cuts n
- n0 1
- ngt0 cuts (n-1) n
- otherwise 0
-
13The Pictures case study.
- Using a powerful library of functions over lists.
- Pattern matching
- Recursion
- Generic functions
- Higher-order functions
-
14Using Hugs
- expr Evaluate expr
- type expr Give the type of expr
- l Blah Load the file Blah.hs
- r Reload the last file
- ? Help list commands
- e Edit the current file
- q Quit
15Functions over pictures
- A function to flip a picture in a vertical mirror
flipV
16Functions over pictures
- A function to invert the colours in a picture
17Functions over pictures
- A function to superimpose two pictures
superimpose
18Functions over pictures
- A function to put one picture above another
above
19Functions over pictures
- A function to put two pictures side by side
sideBySide
20A naïve implementation
- type Picture String
- type String Char
- A Picture is a list of Strings.
- A String is a list of Char (acters).
.......... ......... ......... .........
. ......... ....... ........ .......
... .......... .......... .......... ......
....
21How are they implemented?
- flipH Reverse the list of strings.
- flipV Reverse each string.
- rotate flipH then flipV (or v.versa).
- above Join the two lists of strings.
- sideBySide Join corresponding lines.
- invertColour Change each Char and each line.
- superimpose Join each Char join each line.
22How are they implemented?
- flipH reverse
- flipV map reverse
- rotate flipV . flipH
- above
- sideBySide zipWith ()
- invertColour map (map invertChar)
- superimpose zipWith (zipWith combine)
23Lists and types
- Haskell is strongly typed detect all type errors
before evaluation. - For each type t there is a type t, 'list of t'.
- reverse
- reverse (xxs) reverse xs x
- reverse a -gt a
- a is a type variable reverse works over any list
type, returning a list of the same type.
24Flipping in a vertical mirror
- flipV Picture -gt Picture
- flipV
- flipV (xxs) reverse x flipV xs
- Run along the list, applying reverse to each
element - Run along the list, applying to every element.
- General pattern of computation.
25Implementing the mapping pattern
- map f
- map f (xxs) f x map f xs
- map (a -gt b) -gt a -gt b
- Examples over pictures
- flipV pic map reverse pic
- invertColour pic map invertLine pic
- invertLine line map invertChar line
26Functions as data
- Haskell allows you to pass functions as arguments
and return functions as results, put them into
lists, etc. In contrast, in Pascal and C, you can
only pass named functions, not functions you
build dynamically. - map isEven ??
- map isEven Int -gt Bool
- It is a partial application, which gives a
function - give it a Int and it will give you back a
Bool
27Partial application in Pictures
- flipV map reverse
- invertColour map (map invertChar)
28Another pattern zipping together
sideBySide l1,l2,l3 r1,r2,r3 l1r1,
l2r2, l3r3
zipWith f (xxs) (yys) f x y zipWith f xs
ys zipWith f xs ys
zipWith (a-gtb-gtc) -gt a -gt b -gt c
29In the case study
- sideBySide zipWith ()
- Superimposing two pictures need to combine
individual elements - combine Char -gt Char -gt Char
- combine top btm
- if (top'.' btm'.') then '.' else ''
- superimpose zipWith (zipWith combine)
30Parsing
- "((23)-4)"
- is a sequence of symbols, but underlying it is a
structure ...
-
4
2
3
31Arithmetical expressions
- An expression is either
- a literal, such as 234 or a composite
expression - the sum of two expressions (e1e2)
- the difference of two expressions (e1-e2)
- the product of two expressions (e1e2)
32How to represent these structures?
- data Expr Lit Int
- Sum Expr Expr
- Minus Expr Expr
- Times Expr Expr
- Elements of this algebraic data type include
- Lit 34 34
- Sum (Lit 45) (Lit 3) (453)
- Minus (Sum (Lit 2) (Lit 3)) (Lit 4) ((23)-4)
33Counting operators
- data Expr Lit Int Sum Expr Expr Minus ...
- How many operators in an expression?
- Definition using pattern matching
- cOps (Lit n) 0
- cOps (Sum e1 e2) cOps e1 cOps e2 1
- cOps (Minus e1 e2) cOps e1 cOps e2 1
- cOps (Times e1 e2) cOps e1 cOps e2 1
34Evaluating expressions
- data Expr Lit Int Sum Expr Expr Minus ...
- Literals are themselves
- eval (Lit n) n
- in other cases, evaluate the two arguments and
then combine the results - eval (Sum e1 e2) eval e1 eval e2
- eval (Minus e1 e2) eval e1 - eval e2
- eval (Times e1 e2) eval e1 eval e2
35List comprehensions
- Example list x 4,3,2,5
- n2 nlt-x, isEven n
- run through the n in x
- 4 3 2 5
- select those which are even
- 4 2
- and add 2 to each of them
- 6 4
- giving the result
- 6,4
36 List comprehensions
- Example lists x 4,3,2 y 12,17
- nm nlt-x, mlt-y
- run through the n in x
- 4 3 2
- and for each, run through the m in y
- 12 17 12 17 12 17
- add corresponding pairs
- 16 21 15 20 14 19
- giving the result
- 16,21,15,20,14,19
37Quicksort
- qsort
- qsort (xxs)
- qsort elts_lt_x
- x
- qsort elts_greq_x
- where
- elts_lt_x y y lt- xs, y lt
x - elts_greq_x y y lt- xs, y gt
x -
38MergeSort
mergeSort mergeSort x x mergeSort
xs size gt 1 merge (mergeSort front)
(mergeSort back) where size length xs div
2 front take size xs back drop size
xs
39Merging
x
x lt y?
y
merge 1, 3 2, 4 1 merge 3 2, 4 1 2
merge 3 4 1 2 3 merge 4 1
2 3 4 1,2,3,4
40Defining Merge
One list gets smaller.
merge (x xs) (y ys) x lt y x merge
xs (y ys) x gt y y merge (x xs)
ys merge ys ys merge xs xs
Two possible base cases.
41 Lazy evaluation
- Only evaluate what is needed infinite lists
- nums Int -gt Int
- nums n n nums (n1)
- sft (xyzs) xy
- sft (nums 3)
- sft (3 nums 4)
- sft (3 4 nums 5)
- 7
42The list of prime numbers
- primes sieve (nums 2)
- sieve (xxs)
- x sieve z zlt-xs, z mod x / 0
- To sieve (xxs) return x, together with the
result of sieveing xs with all multiples of x
removed.