Example Scheme Function: equal

Similar documents
Chapter 15. Functional Programming Languages

CPS 506 Comparative Programming Languages. Programming Language Paradigm

Chapter 15. Functional Programming Languages ISBN

Chapter 15. Functional Programming Languages

15. Functional Programming

Functional Programming Languages (FPL)

Concepts of Programming Languages

Chapter 15 Functional Programming Languages

Functional Programming. Big Picture. Design of Programming Languages

Functional Programming Languages (FPL)

COP4020 Programming Languages. Functional Programming Prof. Robert van Engelen

Organization of Programming Languages CS3200/5200N. Lecture 11

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

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

LECTURE 16. Functional Programming

FP Foundations, Scheme

CS 314 Principles of Programming Languages

Imperative languages

Functional Programming. Pure Functional Programming

Functional programming with Common Lisp

Lambda Calculus see notes on Lambda Calculus

It is better to have 100 functions operate one one data structure, than 10 functions on 10 data structures. A. Perlis

CSC312 Principles of Programming Languages : Functional Programming Language. Copyright 2006 The McGraw-Hill Companies, Inc.

Programming Systems in Artificial Intelligence Functional Programming

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

Haskell 98 in short! CPSC 449 Principles of Programming Languages

SML A F unctional Functional Language Language Lecture 19

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

Relational Expressions. Boolean Expressions. Boolean Expressions. ICOM 4036 Programming Languages. Boolean Expressions

Functional Languages. Hwansoo Han

Data Types The ML Type System

Functional Programming. Another representative from the Declarative paradigm

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

Functional Programming. Pure Functional Languages

Iterative Statements. Iterative Statements: Examples. Counter-Controlled Loops. ICOM 4036 Programming Languages Statement-Level Control Structure

Plan (next 4 weeks) 1. Fast forward. 2. Rewind. 3. Slow motion. Rapid introduction to what s in OCaml. Go over the pieces individually

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

Programming Languages

Introduction to ML. Mooly Sagiv. Cornell CS 3110 Data Structures and Functional Programming

COP4020 Programming Assignment 1 - Spring 2011

Common LISP Tutorial 1 (Basic)

A First Look at ML. Chapter Five Modern Programming Languages, 2nd ed. 1

Functional Programming and Haskell

G Programming Languages Spring 2010 Lecture 6. Robert Grimm, New York University

Functional Programming. Pure Functional Languages

So what does studying PL buy me?

CIS24 Project #3. Student Name: Chun Chung Cheung Course Section: SA Date: 4/28/2003 Professor: Kopec. Subject: Functional Programming Language (ML)

Programming Languages, Summary CSC419; Odelia Schwartz

OCaml. History, Variants. ML s holy trinity. Interacting with ML. Base type: Integers. Base type: Strings. *Notes from Sorin Lerner at UCSD*

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

Pierce Ch. 3, 8, 11, 15. Type Systems

Functional Programming

1. true / false By a compiler we mean a program that translates to code that will run natively on some machine.

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

OCaml. ML Flow. Complex types: Lists. Complex types: Lists. The PL for the discerning hacker. All elements must have same type.

Scheme: Expressions & Procedures

Online Resource. Online introductory book on programming in SML (Standard ML): online.pdf

NOTE: Answer ANY FOUR of the following 6 sections:

Introduction to ML. Mooly Sagiv. Cornell CS 3110 Data Structures and Functional Programming

Scheme: Data. CS F331 Programming Languages CSCE A331 Programming Language Concepts Lecture Slides Monday, April 3, Glenn G.

F28PL1 Programming Languages. Lecture 11: Standard ML 1

Functional programming in LISP

Streams and Evalutation Strategies

Introduction. Primitive Data Types: Integer. Primitive Data Types. ICOM 4036 Programming Languages

9/21/17. Outline. Expression Evaluation and Control Flow. Arithmetic Expressions. Operators. Operators. Notation & Placement

CS 314 Principles of Programming Languages

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

Programming Languages Third Edition. Chapter 9 Control I Expressions and Statements

Functional Programming. Functional Programming

CSC 533: Programming Languages. Spring 2015

CSc 520 Principles of Programming Languages

Scheme in Scheme: The Metacircular Evaluator Eval and Apply

Note that pcall can be implemented using futures. That is, instead of. we can use

Principles of Programming Languages 2017W, Functional Programming

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

Programming Languages

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

Project 2: Scheme Interpreter

n n Try tutorial on front page to get started! n spring13/ n Stack Overflow!

G Programming Languages - Fall 2012

SOFTWARE ARCHITECTURE 6. LISP

Chapter 11 :: Functional Languages

CS 320: Concepts of Programming Languages

CSc 372. Comparative Programming Languages. 2 : Functional Programming. Department of Computer Science University of Arizona

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

Concepts of programming languages

Introduction to ML. Mooly Sagiv. Cornell CS 3110 Data Structures and Functional Programming

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

Functional Programming Lecture 1: Introduction

COSE212: Programming Languages. Lecture 4 Recursive and Higher-Order Programming

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

Classical Themes of Computer Science

An introduction to Scheme

CS 314 Principles of Programming Languages

Haskell: Lists. CS F331 Programming Languages CSCE A331 Programming Language Concepts Lecture Slides Friday, February 24, Glenn G.

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))

CMSC 331 Final Exam Section 0201 December 18, 2000

Introduction to Functional Programming

Lambda Calculus and Lambda notation in Lisp II. Based on Prof. Gotshalks notes on Lambda Calculus and Chapter 9 in Wilensky.

Functional Programming in Scheme

Transcription:

ICOM 4036 Programming Languages Functional Programming Languages Mathematical Functions Fundamentals of Functional Programming Languages The First Functional Programming Language: LISP Introduction to Scheme COMMON LISP, ML, Haskell Applications of Functional Languages Comparison of Functional and Imperative Languages This lecture covers review questions 7-14 This lecture covers problems review questions 1-7 Dr. Amirhossein Chinaei, ECE, UPRM Spring 2010 Example Scheme Function: member member takes an atom and a simple list; returns #T if the atom is in the list; #F otherwise (DEFINE (member atm lis ((NULL? lis #F ((EQ? atm (CAR lis #T ((ELSE (member atm (CDR lis ***Some slides are adapted from the Sebesta s textbook ICOM 4036. Ch.4. 447 Example Scheme Function: equalsimp equalsimp takes two simple lists as parameters; returns #T if the two simple lists are equal; #F otherwise (DEFINE (equalsimp lis1 lis2 ((NULL? lis1 (NULL? lis2 ((NULL? lis2 #F ((EQ? (CAR lis1 (CAR lis2 (equalsimp(cdr lis1(cdr lis2 (ELSE #F ICOM 4036. Ch.4. 448 Example Scheme Function: equal equal takes two general lists as parameters; returns #T if the two lists are equal; #F otherwise (DEFINE (equal lis1 lis2 ((NOT (LIST? lis1(eq? lis1 lis2 ((NOT (LIST? lis2 #F ((NULL? lis1 (NULL? lis2 ((NULL? lis2 #F ((equal (CAR lis1 (CAR lis2 (equal (CDR lis1 (CDR lis2 (ELSE #F ICOM 4036. Ch.4. 449 1

Example Scheme Function: LET General form: (LET ( (name_1 expression_1 (name_2 expression_2... (name_n expression_n body Evaluate all expressions, then bind the values to the names; evaluate the body ICOM 4036. Ch.4. 450 LET Example (DEFINE (quadratic_roots a b c (LET ( (root_part_over_2a (/ (SQRT (- (* b b (* 4 a c(* 2 a (minus_b_over_2a (/ (- 0 b (* 2 a (DISPLAY (+ minus_b_over_2a root_part_over_2a (NEWLINE (DISPLAY (- minus_b_over_2a root_part_over_2a ICOM 4036. Ch.4. 451 Tail Recursion in Scheme Definition: A function is tail recursive if its recursive call is the last operation in the function A tail recursive function can be automatically converted by a compiler to use iteration, making it faster Scheme language definition requires that Scheme language systems convert all tail recursive functions to use iteration ICOM 4036. Ch.4. 452 Tail Recursion in Scheme (cont d Example of rewriting a function to make it tail recursive, using a helper function Original: (DEFINE (factorial n (IF (= n 0 1 (* n (factorial (- n 1 Tail recursive: (DEFINE (facthelper n factpartial (IF (= n 0 factpartial facthelper((- n 1 (* n factpartial (DEFINE (factorial n (facthelper n 1 ICOM 4036. Ch.4. 453 2

Scheme Functional Forms Composition The previous examples have used it (CDR (CDR '(A B C yeilds (C Apply to All: one form in Scheme is mapcar Applies the given function to all elements of the given list; Functions That Build Code It is possible in Scheme to define a function that builds Scheme code and requests its interpretation This is possible because the interpreter is a user-available function, EVAL (DEFINE (mapcar fun lis ((NULL? lis ( (ELSE (CONS (fun (CAR lis (mapcar fun (CDR lis ICOM 4036. Ch.4. 454 ICOM 4036. Ch.4. 455 Adding a List of Numbers (DEFINE (adder lis ((NULL? lis 0 (ELSE (EVAL (CONS '+ lis The parameter is a list of numbers to be added; adder inserts a + operator and evaluates the resulting list Use CONS to insert the atom + into the list of numbers. Be sure that + is quoted to prevent evaluation Submit the new list to EVAL for evaluation COMMON LISP A combination of many of the features of the popular dialects of LISP around in the early 1980s A large and complex language: the opposite of Scheme Features include: records arrays complex numbers character strings powerful I/O capabilities packages with access control iterative control statements ICOM 4036. Ch.4. 456 ICOM 4036. Ch.4. 457 3

ML A static-scoped functional PL with syntax that is closer to Pascal than to LISP Uses type declarations, but also does type inferencing to determine the types of undeclared variables It is strongly typed (whereas Scheme is essentially typeless and has no type coercions Includes exception handling and a module facility for implementing abstract data types Includes lists and list operations ICOM 4036. Ch.4. 458 ML Specifics Function declaration form: fun name (parameters = body; e.g., fun cube (x : int = x * x * x; The type could be attached to return value, as in fun cube (x : int : int = x * x * x; With no type specified, it would default to int (the default for numeric values User-defined overloaded functions are not allowed, so if we wanted a cube function for real parameters, it would need to have a different name - There are no type coercions in ML ICOM 4036. Ch.4. 459 ML selection ML Specifics (cont d if expression then then_expression else else_expression where the first expression must evaluate to a Boolean value Pattern matching is used to allow a function to operate on different parameter forms fun fact(0 = 1 fact(n : int : int = n * fact(n 1 ML Specifics (cont d Lists Literal lists are specified in brackets: e.g., [3, 5, 7] [] is the empty list CONS is the binary infix operator, :: 4 :: [3, 5, 7], which evaluates to [4, 3, 5, 7] CAR is the unary operator hd CDR is the unary operator tl fun length([] = 0 length(h :: t = 1 + length(t; fun append([], lis2 = lis2 append(h :: t, lis2 = h :: append(t, lis2; ICOM 4036. Ch.4. 460 ICOM 4036. Ch.4. 461 4

ML Specifics (cont d The val statement binds a name to a value (similar to DEFINE in Scheme e.g., val distance = time * speed; As is the case with DEFINE, val is nothing like an assignment statement in an imperative language ICOM 4036. Ch.4. 462 Haskell Similar to ML (syntax, static scoped, strongly typed, type inferencing, pattern matching Different from ML (and most other FPL s in that it is purely functional (e.g., no variables, no assignment statements, and no side effects of any kind Syntax differences from ML fact 0 = 1 fact n = n * fact (n 1 fib 0 = 1 fib 1 = 1 fib (n + 2 = fib (n + 1 + fib n ICOM 4036. Ch.4. 463 Function Definitions with Different Parameter Ranges fact n n == 0 = 1 n > 0 = n * fact(n 1 sub n n < 10 = 0 n > 100 = 2 otherwise = 1 square x = x * x (Works for any numeric type of x Lists List notation: Put elements in brackets e.g., directions = ["north, "south", "east", "west"] Length: # e.g., #directions is 4 Arithmetic series with the.. operator e.g., [2, 4..10] is [2, 4, 6, 8, 10] Catenation is with ++ e.g., [1, 3] ++ [5, 7] results in [1, 3, 5, 7] CONS, CAR, CDR via the colon operator (as in Prolog e.g., 1:[3, 5, 7] results in [1, 3, 5, 7] ICOM 4036. Ch.4. 464 ICOM 4036. Ch.4. 465 5

Factorial Revisited product [] = 1 product (a:x = a * product x fact n = product [1..n] Set notation List Comprehension List of the squares of the first 20 positive integers: [n * n n [1..20]] All of the factors of its given parameter: factors n = [i i [1..n `div` 2], n `mod` i == 0] ICOM 4036. Ch.4. 466 ICOM 4036. Ch.4. 467 sort [] = [] Quicksort sort (a:x = sort [b b x; b <= a] ++ [a] ++ sort [b b x; b > a] ICOM 4036. Ch.4. 468 Lazy Evaluation A language is strict if it requires all actual parameters to be fully evaluated A language is nonstrict if it does not have the strict requirement Nonstrict languages are more efficient and allow some interesting capabilities: for example: infinite lists Lazy evaluation: only compute those values that are necessary Examples: Positive numbers: positives = [0..] Determining if 16 is a square number member [] b = False member(a:x b=(a == b member x b squares = [n * n n [0..]] member squares 16 ICOM 4036. Ch.4. 469 6

Member Revisited The member function could be written as: member [] b = False member(a:x b=(a == b member x b However, this would only work if the parameter to squares was a perfect square; if not, it will keep generating them forever. The following version will always work: member2 (m:x n m < n = member2 x n m == n = True otherwise = False Comparing FPL s and IPL s Imperative Languages: Efficient execution Complex semantics Complex syntax Concurrency is programmer designed Functional Languages: Inefficient execution Simple semantics Simple syntax Programs can automatically be made concurrent ICOM 4036. Ch.4. 470 ICOM 4036. Ch.4. 471 Applications of Functional Languages APL is used for throw-away programs LISP is used for artificial intelligence Knowledge representation Machine learning Natural language processing Modeling of speech and vision Scheme is used to teach introductory programming at some universities Summary Functional programming languages use function application, conditional expressions, recursion, and functional forms to control program execution instead of imperative features such as variables and assignments LISP began as a purely functional language and later included imperative features Scheme is a relatively simple dialect of LISP that uses static scoping exclusively COMMON LISP is a large LISP-based language ML is a static-scoped and strongly typed functional language which includes type inference, exception handling, and a variety of data structures and abstract data types Haskell is a lazy functional language supporting infinite lists and set comprehension. Purely functional languages have advantages over imperative alternatives, but their lower efficiency on existing machine architectures has prevented them from enjoying widespread use ICOM 4036. Ch.4. 472 ICOM 4036. Ch.4. 473 7