(Func&onal (Programming (in (Scheme)))) Jianguo Lu

Similar documents
Functional Programming. Pure Functional Programming

Functional Programming. Pure Functional Languages

LECTURE 16. Functional Programming

Functional Programming. Pure Functional Languages

Summer 2017 Discussion 10: July 25, Introduction. 2 Primitives and Define

CPS 506 Comparative Programming Languages. Programming Language Paradigm

Chapter 15. Functional Programming Languages

Functional Programming. Big Picture. Design of Programming Languages

Chapter 15 Functional Programming Languages

COP4020 Programming Languages. Functional Programming Prof. Robert van Engelen

Func%onal Programming in Scheme and Lisp

User-defined Functions. Conditional Expressions in Scheme

Fall 2017 Discussion 7: October 25, 2017 Solutions. 1 Introduction. 2 Primitives

Func%onal Programming in Scheme and Lisp

Scheme Tutorial. Introduction. The Structure of Scheme Programs. Syntax

Spring 2018 Discussion 7: March 21, Introduction. 2 Primitives

CS 314 Principles of Programming Languages

Documentation for LISP in BASIC

Organization of Programming Languages CS3200/5200N. Lecture 11

Principles of Programming Languages Topic: Functional Programming Professor L. Thorne McCarty Spring 2003

SCHEME 8. 1 Introduction. 2 Primitives COMPUTER SCIENCE 61A. March 23, 2017

CSC 533: Programming Languages. Spring 2015

Fall 2018 Discussion 8: October 24, 2018 Solutions. 1 Introduction. 2 Primitives

Scheme. Functional Programming. Lambda Calculus. CSC 4101: Programming Languages 1. Textbook, Sections , 13.7

Functional Programming Languages (FPL)

SCHEME 7. 1 Introduction. 2 Primitives COMPUTER SCIENCE 61A. October 29, 2015

Functional Languages. Hwansoo Han

4/19/2018. Chapter 11 :: Functional Languages

11/6/17. Functional programming. FP Foundations, Scheme (2) LISP Data Types. LISP Data Types. LISP Data Types. Scheme. LISP: John McCarthy 1958 MIT

Functional Programming

More Scheme CS 331. Quiz. 4. What is the length of the list (()()()())? Which element does (car (cdr (x y z))) extract from the list?

Functional programming with Common Lisp

Scheme in Scheme: The Metacircular Evaluator Eval and Apply

Chapter 1. Fundamentals of Higher Order Programming

CSE 341 Section Handout #6 Cheat Sheet

Functional Programming Lecture 1: Introduction

CS 61A Interpreters, Tail Calls, Macros, Streams, Iterators. Spring 2019 Guerrilla Section 5: April 20, Interpreters.

Scheme Quick Reference

Scheme Quick Reference

Streams, Delayed Evaluation and a Normal Order Interpreter. CS 550 Programming Languages Jeremy Johnson

Chapter 15. Functional Programming Languages ISBN

Chapter 15. Functional Programming Languages

CS61A Midterm 2 Review (v1.1)

Notes on Higher Order Programming in Scheme. by Alexander Stepanov

Programming Languages

CS251 Programming Languages Spring 2016, Lyn Turbak Department of Computer Science Wellesley College

Introduction to Scheme

CS 360 Programming Languages Interpreters

Introduction to Functional Programming

SOFTWARE ARCHITECTURE 6. LISP

INTRODUCTION TO SCHEME

SCHEME The Scheme Interpreter. 2 Primitives COMPUTER SCIENCE 61A. October 29th, 2012

;;; Determines if e is a primitive by looking it up in the primitive environment. ;;; Define indentation and output routines for the output for

Lists in Lisp and Scheme

CSCC24 Functional Programming Scheme Part 2

An Introduction to Scheme

COP4020 Programming Assignment 1 - Spring 2011

Announcements. The current topic: Scheme. Review: BST functions. Review: Representing trees in Scheme. Reminder: Lab 2 is due on Monday at 10:30 am.

Scheme: Expressions & Procedures

Functional Programming - 2. Higher Order Functions

A Brief Introduction to Scheme (II)

Programming Languages. Function-Closure Idioms. Adapted from Dan Grossman's PL class, U. of Washington

Programming Language Pragmatics

Project 2: Scheme Interpreter

6.184 Lecture 4. Interpretation. Tweaked by Ben Vandiver Compiled by Mike Phillips Original material by Eric Grimson

61A LECTURE 22 TAIL CALLS, ITERATORS. Steven Tang and Eric Tzeng July 30, 2013

Principles of Programming Languages 2017W, Functional Programming

CS 314 Principles of Programming Languages. Lecture 16

SCHEME AND CALCULATOR 5b

Chapter 11 :: Functional Languages

Modern Programming Languages. Lecture LISP Programming Language An Introduction

Lisp. Versions of LISP

Building a system for symbolic differentiation

Functional Languages. CSE 307 Principles of Programming Languages Stony Brook University

SCHEME 10 COMPUTER SCIENCE 61A. July 26, Warm Up: Conditional Expressions. 1. What does Scheme print? scm> (if (or #t (/ 1 0)) 1 (/ 1 0))

Announcement. Overview. LISP: A Quick Overview. Outline of Writing and Running Lisp.

Ways to implement a language

Scheme: Strings Scheme: I/O

Imperative languages

Functional Programming Languages (FPL)

Why do we need an interpreter? SICP Interpretation part 1. Role of each part of the interpreter. 1. Arithmetic calculator.

A Func'onal Introduc'on. COS 326 David Walker Princeton University

Racket Values. cons Glues Two Values into a Pair. The Pros of cons: Pairs and Lists in Racket. Box-and-pointer diagrams for cons trees

Functional Programming and Haskell

Interpreters and Tail Calls Fall 2017 Discussion 8: November 1, 2017 Solutions. 1 Calculator. calc> (+ 2 2) 4

Comp 311: Sample Midterm Examination

FP Foundations, Scheme

CSCI337 Organisation of Programming Languages LISP

Essentials of Programming Languages Language

Normal Order (Lazy) Evaluation SICP. Applicative Order vs. Normal (Lazy) Order. Applicative vs. Normal? How can we implement lazy evaluation?

Func+on applica+ons (calls, invoca+ons)

Lambda Calculus see notes on Lambda Calculus

Introduction to Functional Programming in Racket. CS 550 Programming Languages Jeremy Johnson

61A LECTURE 18 SCHEME. Steven Tang and Eric Tzeng July 24, 2013

Example Scheme Function: equal

Building a system for symbolic differentiation

CSc 520 Principles of Programming Languages

ALISP interpreter in Awk

Lisp Basic Example Test Questions

Essentials of Programming Languages Language

Transcription:

(Func&onal (Programming (in (Scheme)))) Jianguo Lu 1

Programming paradigms Func&onal No assignment statement No side effect Use recursion Logic OOP AOP 2

What is func&onal programming It is NOT what you do in in IMPERATIVE languages such C, C+ +, Java, C#... Func&ons are first class objects. everything you can do with "data" can be done with func&ons themselves such as passing a func&on to another func&on. "higher order" func&ons, func&ons that operate on func&ons. E.g., MAP/REDUCE. Recursion is used as a primary control structure. In some FP languages, no other "loop" construct exists. FP is declara&ve--worries about what is to be computed rather than how it is to be computed. 3

FP There is a focus on LISt Processing. Lists are o\en used with recursion on sub-lists as a subs&tute for loops. "Pure" func&onal languages eschew side-effects. No statements No assignment No state No assigning first one, then another value to the same variable to track the program state. one program is one expression (plus suppor&ng defini&ons). 4

History Func&onal programming began in the late 1950s. There were many dialects, star&ng with LISP 1.5 (1960), through Scheme (1975) to Common LISP (1985). Lisp(1958)à scheme(1975)àcommon Lisp(1985)àscheme RRS(1998) LISP = LISt Processor Scheme is simpler than Lisp Scheme specifica&on is about 50 pages, compared to Common Lisp's 1300 page dra\ standard. Another category of func&onal programming languages are ML(1973) àmiranda(1982)à Haskell(1987). FP IS alive XSLT also has characteris&cs of func&onal programming MAPREDUCE Python The mathema&cal basis of many func&onal programming languages is λ- calculus. It allows expressions that have func&ons as values. 5

Run Scheme interpreter kawa kawa is an Scheme interpreter wrijen in Java Alterna&vely, you can use other implementa&ons. DrScheme is a good one. It has detailed debugging informa&on. hjp://www.plt-scheme.org/so\ware/drscheme/ Download kawa jar file \p://\p.gnu.org/pub/gnu/kawa/kawa-1.9.90.jar Start Kawa by: C:\440>java -jar kawa-1.9.90.jar kawa.repl Try the following programs in Kawa > "hello world" hello world > (+ 2 3) 5 >(exit) Also installed in our school unix system luna:~>kawa # kawa:1 # (+ 2 3) 5 6

Run scheme programs in a file Instead of wri&ng everything at the Scheme prompt, you can: write your func&on defini&ons and your global variable defini&ons (define...) in a file ("file_name") at the Scheme prompt, load the file with: (load "file_name") at the Scheme prompt call the desired func&ons there is no "formal" main func&on 7

The Structure of a Scheme Program All programs and data are expressions Expressions can be atoms or lists Atom: number, string, iden&fier, character, boolean E.g. "hello world" hello world List: sequence of expressions separated by spaces, between parentheses E.g. (+ 2 3) Syntax: expression atom list atom list ( expr_seq ) number string iden&fier character boolean expr_seq expression expr_seq expression 8

Interac&ng with Scheme Interpreter: "read-eval-print" loop > 1 1 Reads 1, evaluates it (1 evaluates to itself), then prints its value > (+ 2 3) 5 + => func&on + 2 => 2 3 => 3 Applies func&on + on operands 2 and 3 => 5 9

Evalua&on Constant atoms - evaluate to themselves 42 - a number 3.14 - another number "hello" - a string a - character 'a' #t - boolean value "true" > "hello world" hello world 10

Evalua&on of iden&fiers Iden&fiers (symbols) - evaluate to the value bound to them (define a 7) > a 7 > (+ a 5) => 12 > + + > x1 => error 11

Evaluate lists Lists - evaluate as "func&on calls": ( func&on arg1 arg2 arg3...) First element must evaluate to a func&on Recursively evaluate each argument Apply the func&on on the evaluated arguments > (- 7 1) 6 > (* (+ 2 3) (/ 6 2)) 15 > 12

Operators Prefix nota&on Any number of arguments > (+) 0 > (+ 2 3 4) 9 > (+ 2) 2 > (- 10 7 2) 1 > (+ 2 3) 5 > (/ 20 5 2) 2 13

Preven&ng Evalua&on (quote) Evaluate the following: > (1 2 3) ;Error: ajempt to apply non-procedure 1. Use the quote to prevent evalua&on: > (quote (1 2 3)) (1 2 3) Short-hand nota&on for quote: > '(1 2 3) (1 2 3) 14

Iden&fiers and quotes (define a 7) a => 7 'a => a (+ 2 3) => 5 '(+ 2 3) => (+ 2 3) ((+ 2 3)) => Error 15

Forcing evalua&on (+ 1 2 3) => 6 '(+ 1 2 3) => (+ 1 2 3) (eval '(+ 1 2 3)) => 6 eval evaluates its single argument eval is implicitly called by the interpreter to evaluate each expression entered: read-eval-print loop 16

List opera&ons Scheme comes from LISP, LISt Processing List opera&ons: cons, car, cdr, cons construct a list from head and tail (cons 'a '(b c d)) => (a b c d) (cons 'a '()) => (a) (cons '(a b) '(c d)) => ((a b) c d) (cons 'a (cons 'b '())) => (a b) 17

List opera&ons car returns first member of a list (head) (car '(a b c d)) => a (car '(a)) => a (car '((a b) c d)) => (a b) (car '(this (is no) more difficult)) => this cdr returns the list without its first member (tail) (cdr '(a b c d)) => (b c d) (cdr '(a b)) => (b) (cdr '(a)) => ( ) (cdr '(a (b c))) => (b c)? ((b c)) (car (cdr (cdr '(a b c d)))) => c (car (car '((a b) (c d)))) è a 18

list opera&ons null? returns #t if the list is null () #f otherwise (null? ()) => #t list returns a list built from its arguments (list 'a 'b 'c) => (a b c) (list 'a) => (a) (list '(a b c)) => ((a b c)) (list '(a b) 'c) => ((a b) c) (list '(a b) '(c d)) => ((a b) (c d)) (list '(+ 2 1) (+ 2 1)) => ((+ 2 1) 3) 19

List opera&ons length returns the length of a list (length '(1 3 5 7)) => 4 (length '((a b) c)) => 2 reverse returns the list reversed (reverse '(1 3 5 7)) => (7 5 3 1) (reverse '((a b) c)) => (c (a b)) append returns the concatena&on of the lists received as arguments (append '(1 3 5) '(7 9)) => (1 3 5 7 9) (append '(a) '()) => (a) (append '(a b) '((c d) e)) => (a b (c d) e) 20

Type Predicates Check the type of the argument and return #t or #f (boolean? x) ; is x a boolean? (char? x) ; is x a char? (char? #\a) => #t Characters are wrijen using the nota&on #\<character> (string? x) ; is x a string? (string? xyx ) => #t (number? x) ; is x a number? (number? 2) => #t (list? x) ; is x a list? (procedure? x) ; is x a procedure? (procedure? car) => #t 21

Boolean Expression (< 1 2) => #t (>= 3 4) => #f (= 4 4) => #t (eq? 2 2) => #t (eq? '(a b) '(a b)) => #f (equal? 2 2) => #t (equal? '(a b) '(a b)) => #t ; recursively equivalent "eq?" returns #t if its parameters represent the same data object in memory; equal? compares data structures such as lists, vectors and strings to determine if they have congruent structure and equivalent contents (not (> 5 6)) => #t (and (< 3 4) (= 2 3)) => #f (or (< 3 4) (= 2 3)) => #t 22

Condi&onal Expressions if has the form: (if <test_exp> <then_exp> <else_exp>) (if (< 5 6) 1 2) => 1 (if (< 4 3) 1 2) => 2 Recall the java expression (x<y)?1:2 Anything other than #f is treated as true: (if 3 4 5) => 4 (if '() 4 5) => 4 It is not a typed-language if is a special form - evaluates its arguments only when needed (lazy evalua&on): (if (= 3 4) 1 (2)) => Error (if (= 3 3) 1 (2)) => 1 23

Condi&on expression cond has the form: (cond (<test_exp1> <exp1>...) (<test_exp2> <exp2>...)... (else <exp>...)) (define n -5) (cond ((< n 0) "nega&ve") ((> n 0) "posi&ve") (else "zero")) => "nega&ve" 24

Recursive defini&on How do you THINK recursively? Example: define factorial factorial (n) = 1 * 2 * 3 *...(n-1) * n factorial (n-1) 1 if n=1 (the base case) factorial(n) = step) n * factorial(n-1) otherwise (induc&ve 25

Factorial example (define (factorial n) (if (= n 1) 1 (* n (factorial (- n 1))))) (factorial 4) => 24 26

Fibonacci example Fibonacci: 0 if n = 0 fib(n) = 1 if n = 1 fib(n-1) + fib(n-2) otherwise Implement in Scheme: (define (fib n) (cond ((= n 0) 0) ((= n 1) 1) (else (+ (fib (- n 1)) (fib (- n 2)))))) 27

Length example Length of a list: empty len(lst) = 0 if list is 1 + len ( lst-without-first-element ) otherwise Implement in Scheme: (define (len lst) (if (null? lst) 0 (+ 1 (len (cdr lst))))) (length (a b c d)) (length (b c d)) (length (c d)) (length (d)) (length ()) 0 1 2 3 4 28

Sum example Sum of elements in a list of numbers: (sum (1 2 3)) => 6 sum(lst) = 0 if list is empty first-element + sum (lst-without-first-element) otherwise Implement in Scheme: (define (sum lst) (if (null? lst) 0 (+ (car lst) (sum (cdr lst))))) 29

Member example Check membership in a list: (define (member? x lst) (cond ((null? lst) #f) ((equal? x (car lst)) #t) (else (member? x (cdr lst))))) 30

Recursion When recurring on a list lst, ask two ques&ons about it: (null? lst) and else make your recursive call on (cdr lst) When recurring on a number n, ask two ques&ons about it: (= n 0) and else make your recursive call on (- n 1) 31

Local defini&on let - has a list of bindings and a body each binding associates a name to a value bindings are local (visible only in the body of let) let returns the last expression in the body > (let ((a 2) (b 3)) ; list of bindings 5 (+ a b)) ; body - expression to evaluate > (+ a b) => error > a => Error: variable a is not bound. > b => Error: variable b is not bound. No&ce the scope of a and b is within the body of let. 32

Let Factor out common sub-expressions: f(x,y) = x(1+xy) 2 + y(1-y) + (1+xy)(1-y) a = 1+xy b = 1-y f(x,y) = xa 2 + yb + ab Locally define the common sub-expressions: (define (f x y) (let ((a (+ 1 (* x y))) (b (- 1 y))) (+ (* x a a) (* y b) (* a b)))) (f 1 2) => 4 33

let can define func&ons (let ((f +)) (f 2 3)) => 5 (let ((f +) (x 2)) 5 (f x 3)) => (let ((f +) (x 2) (y 3)) (f x y)) => 5 The variables bound by let are visible only within the body of the let (let ((+ *)) (+ 2 3)) 6 5 (+ 2 3) => 34

Input and output read - returns the input from the keyboard > (read) 234 ; user types this 234 ; the read func&on returns this > (+ 2 (read)) 3 ; user input 5 ; result display - prints its single parameter to the screen > (display "hello world") hello world > (define x 2 ) >(display x) 2 newline - displays a new line 35

Input and output Define a func&on that asks for input: (define (ask-them str) (display str) (read)) > (ask-them "How old are you? ") How old are you? 22 22 36

Input and Output Define a func&on that asks for a number (if it s not a number it keeps asking): (define (ask-number) (display "Enter a number: ") (let ((n (read))) (if (number? n) n (ask-number)))) > (ask-number) Enter a number: a Enter a number: (5 6) Enter a number: "Why don't you like these? Enter a number: 7 7 37

Interac&ve factorial program An outer-level func&on to go with factorial, that reads the input, computes the factorial and displays the result: (define (factorial-interac&ve) (display "Enter an integer: ") (let ((n (read))) (display "The factorial of ") (display n) (display " is ") (display (factorial n)) (newline))) > (factorial-interac&ve) Enter an integer: 4 The factorial of 4 is 24 38

Higher order func&ons A func&on is called a higher-order func&on if it takes a func&on as a parameter, or returns a func&on as a result In Scheme, a func&on is a first-class object it can be passed as an argument to another func&on, it can be returned as a result from another func&on, and it can be created dynamically (let ((f +)) (f 2 3)) 39

Examples of higher-order func&ons map Takes as arguments a func&on and a sequence of lists There must be as many lists as arguments of the func&on, and lists must have the same length Applies the func&on on corresponding sets of elements from the lists Returns all the results in a list f (E 1 E 2... E n ) ((f E 1 ) (f E 2 )... (f E n )) (define (square x) (* x x)) (map square '(1 2 3 4 5)) => (1 4 9 16 25) (map abs '(1-2 3-4 5-6)) => (1 2 3 4 5 6) (map + '(1 2 3) '(4 5 6)) => (5 7 9) 40

lambda expression You can also define the func&on in-place: (map (lambda (x) (* 2 x)) '(1 2 3)) => (2 4 6) (map (lambda (x y) (* x y)) '(1 2 3 4) '(8 7 6 5)) => (8 14 18 20) A simple version of map defini&on (define (map F Lst) ) ) (if (null? Lst) Lst (cons (F (car Lst)) (map F (cdr Lst))) 41

Lambda expression A lambda expression (lambda abstrac&on) defines a func&on in Scheme. Informally, the syntax is: (lambda (<parameters>) <body>) For example: (define addone (lambda (p) (+ p 1))) it has the same effect as: (define (addone p) (+ p 1)) Logo for Racket, a func&onal language based on Scheme 42

Higher order func&on: reduce (also called fold) F: a binary opera&on, that is, a two-argument func&on. E0: a constant. We want to express the following transforma&on: (E1 E2... En) => E0 F E1 F E2 F... F En in scheme nota&on: (E1 E2... En) => (F E0 (F E1 (F... (F En-1 Fn)... ))) (define (reduce F E0 L) ) ) (if (null? L) E0 (F (car L) (reduce F E0 (cdr L))) Example: (reduce * 1 '(1 2 3 4)) è 1*1*2*3*4 43

exercise: what is the result of this expression? (reduce + 0 (map (lambda (x) 1) (1 2 3))) Different ways to define length func&on (define (len lst) (if (null? lst) 0 (+ 1 (len (cdr lst))))) (define len ( lambda (lst) (if (null? lst) 0 (+ 1 (len (cdr lst)))))) (define len (lambda (lst) (reduce + 0 (map (lambda (x) 1) lst)))) 44

Higher order func&on: apply apply takes a func&on and a list there must be as many elements in the list as arguments of the func&on applies the func&on with the elements in the list as arguments (apply * '(5 6)) => 30 (apply append '((a b) (c d))) => (a b c d) Comparison to eval: (eval <expression>) or (eval (<func> <arg1> <arg2>...)) (apply <func> (<arg1> <arg2>...)) 45

Higher order func&on: compose Compose takes two func&ons as parameters. It also returns a func&on (define (compose f g) (lambda (x) (f (g x)))) 2 ((compose car cdr) '(1 2 3)) => ((compose (lambda (x) (+ 1 x)) (lambda (x) (* 2 x))) 5 ) => 11 46

Define reverse func&on (define reverse ( lambda (L) (if (null? L) '( ) (append (reverse (cdr L)) (list (car L))) ))) 47

Append example > ( define ( append L1 L2 ) ; built-in! (if ( null? L1 ) L2 ( cons ( car L1 ) ( append ( cdr L1 ) L2 ) ) ) ) > ( append '( ab bc cd ) '( de ef fg gh ) ) => (ab bc cd de ef fg gh) 48

Number list example > ( define ( numberlist? x ) ( cond ) ) ( ( not ( list? x ) ) #f ) ( ( null? x ) #t ) ( ( not ( number? ( car x ) ) ) #f ) ( else ( numberlist? ( cdr x ) ) ) > ( numberlist? ' ( 1 2 3 4 ) ) #t > ( numberlist? ' ( 1 2 3 bad 4 ) ) #f 49

Inser&on sort example (define (insert x l) ( if (null? l) (list x) (if (<= x (car l)) (cons x l) (cons (car l) (insert x (cdr l)))))) (define (isort l) (if (null? l) () (insert (car l) (isort (cdr l))))) Inser&on sort in an impera&ve language void isort (int[ ] A) { int j; for (int i = 1; i < A.length; i++) { int a = A[i]; for (j = i -1; j >=0 && A[j] > a; j- -) A[j + 1] = A[j]; A[j + 1] = a; } } 50

DFA simula&on Start state: q0 Transi&ons ((q0 0) q2) ((q0 1) q1) ((q1 0) q3) ((q1 1) q0) ((q2 0) q0) ((q2 1) q3) ((q3 0) q1) ((q3 1) q2) Final state: q0 DFA '(q0 (((q0 0) q2) ((q0 1) q1) ((q1 0) q3) ((q1 1) q0) ((q2 0) q0) ((q2 1) q3) ((q3 0) q1) ((q3 1) q2)) (q0)) 51

Define move func&on (define move '(q0 (lambda (dfa symbol) (((q0 0) q2) ((q0 1) q1) ((q1 0) q3) ((q1 1) q0) (let ((curstate (car dfa)) (trans (cadr dfa)) ((q2 0) q0) ((q2 1) q3) ((q3 0) q1) ((q3 1) q2)) (finals (caddr dfa))) (q0)) (list (if (eq? curstate 'error) ;get the next state or error 'error (let ((pair (assoc (list curstate symbol) trans))) ; pair is the next state, say ((q0,0), q2), or false when not found (if pair (cadr pair) 'error))) ; boolean cond is true if not false trans finals)))) cadr: car and cdr. Second element caddr: third element assoc: search an element in an associa&on list 52

assoc func&on assoc: search an associa&on list (table) An associa&on list is a list of lists. Each sublist represents an associa&on between a key and a list of values. Examples Scheme>(assoc 'julie '((paul august 22) (julie feb 9) (veronique march 28))) (julie feb 9) Scheme>(assoc 'key2 '((key1 val1) (key2 val2) (key0 val0))) (key2 val2) Scheme>(assoc '(feb 9) '(((aug 1) maggie phil) ((feb 9) jim heloise) ((jan 6) declan))) ((feb 9) jim heloise) (assoc (list curstate symbol) trans) (assoc (q0 0) trans) à ((q0,0), q2) 53

Simulate func&on (define simulate (lambda (dfa input) (cons (car dfa) (if (null? input) (if (infinal? dfa) '(accept) '(reject)) (simulate (move dfa (car input)) (cdr input)))))) Run the program (simulate '(q0 (((q0 0) q2) ((q0 1) q1) ((q1 0) q3) ((q1 1) q0) ((q2 0) q0) ((q2 1) q3) ((q3 0) q1) ((q3 1) q2)) (q0)) '(0 1 0 0 1 0)) Output: the trace of the states and accept or reject (q0 q2 q3 q1 q3 q2 q0 accept) 54

infinal state func&on dfa (define infinal? '(q0 (lambda (dfa) (memq (car dfa) (caddr dfa)))) (((q0 0) q2) ((q0 1) q1) ((q1 0) q3) ((q1 1) q0) ((q2 0) q0) ((q2 1) q3) ((q3 0) q1) ((q3 1) q2)) (q0)) memq: return the first sublist of list whose car is obj. If obj does not occur in list, then #f (not the empty list) is returned memq 'a '(a b c)) ==> (a b c) (memq 'b '(a b c)) ==> (b c) (memq 'a '(b c d)) ==> #f 55

Assignment a calculator for simple arithme&c expressions when typing (calculator '( 1 + 2)), scheme interpreter will print 3. The calculator will accept expression of any length, and the expression associates to the right. In (calculator '(1 + 1-2 + 3 )), the expression is interpreted as (1+ (1 - (2+3))), hence the value is -3. One bonus mark for le\ associa&on 1+1-2+3 is evaluated as 3 56

Interpreter and compiler Interpreter Program is executed directly. No translated code is generated. Slow For small programs Compiler Program is translated into code that is closer to machine (intermediate code, or assembly code, or machine code) Faster For bigger programs hybrid implementa&on for Java and C# 57

Func&onal programming Pythorn XSLT MAPREDUCE 58

More about assignment (define expr '(+ 1 2)) (eval expr) (define operator (car expr)) operator (operator 2 3) + procedure applica&on: expected procedure, given: + (define operator (eval (car expr))) operator (operator 2 3) #<procedure:+> 5 59