PS4: First-Class Fun
- Due: 6pm Friday 07 October. To encourage you to submit this on time, there is no grace period on this assignment. However, for the purposes of lateness coupons, we will pretend the four days of Fall Break do not exist. So turning this assignment in on Wed. Oct. 12 rather than Friday Oct 7 will cost only one lateness coupon.
- Notes:
- This pset contains a solo problem.
- You have already seen all the material covered on this pset.
- The problems needn’t be done in order. Feel free to jump around.
- Submission:
- In your yourFullName CS251 Spring 2016 Folder, create a Google Doc named yourFullName CS251 PS4.
- At the top of your yourFullName CS251 PS4 doc, include your name, problem set number, date of submission, and an approximation of how long each problem part took.
- For all parts of all problems, include all answers (derviations, code, etc.) in your PS4 google doc. Please format your evaluation derivations so that they’re easy to read. Format small-step derivations and Racket code using a fixed-width font, like Courier New. You can use a small font size if that helps.
- For Problem 1 (Solo Problem: Recursive List Functions)
- Be sure that all function definitions in
yourAccountName-ps4-solo-functions.rkt
also appear in your Google Doc (so that I can comment on them) - Drop a copy of your
yourAccountName-ps4-solo-functions.rkt
in your~/cs251/drop/ps04
drop folder on cs.wellesley.edu.
- Be sure that all function definitions in
- For Problems 3 through 5:
- Be sure that all function definitions in
yourAccountName-ps4-functions.rkt
also appear in your Google Doc (so that I can comment on them) - Drop a copy of your
yourAccountName-ps4-functions.rkt
in your~/cs251/drop/ps04
drop folder on cs.wellesley.edu.
- Be sure that all function definitions in
1. Solo Problem: Recursive List Functions (20 points)
This is a solo problem. This means you must complete it entirely on your own without help from any other person and without consulting resources other than course materials or online documentation. You may ask Lyn for clarification, but not for help.
In this problem you will define three recursive functions on lists. Some ground rules:
- Define all of your functions in a new file named
yourAccountName-ps4-solo-functions.rkt
that you create in Dr. Racket. - You should use explicit recursion on lists in all of your definitions.
- In all of your definitions, you should use the divide/conquer/glue strategy taught in class that you practiced in PS3.
- You should not use any higher-order list operations (e.g.,
map
,filter
,foldr
, orgenlist
) in this problem. - The only built-in Racket list operators you may use in your definitions are:
null
,null?
,cons
,list
,append
,first
,second
,third
, andrest
. (You may use any Racket math or logic operators, such as+
,max
, etc.) - You should use Racket’s
let
construct to avoid evaluating an expression more than once. -
In this problem, you should define and use the following
prob1-map-cons
helper function:(define (prob1-map-cons x yss) (if (null? yss) null (cons (cons x (first yss)) (prob1-map-cons x (rest yss)))))
(This has the special name
prob1-map-cons
so as not to conflict with themap-cons
function you will define in Problem 3.) - Other than
prob1-map-cons
, you should not use any other helper functions in this problem.
-
(5 points) A length-n prefix of a list is a list containing its first n elements in the same relative order. For example:
- The length-0 prefix of
'(5 8 4)
is'()
- The length-1 prefix of
'(5 8 4)
is'(5)
- The length-2 prefix of
'(5 8 4)
is'(5 8)
- The length-3 prefix of
'(5 8 4)
is'(5 8 4)
Define a function
prefixes
that takes a list as its single argument and returns a list of all of its prefixes ordered from shortest to longest. For example:> (prefixes '(5 8 4)) '(() (5) (5 8) (5 8 4)) > (prefixes '(2 5 8 4)) '(() (2) (2 5) (2 5 8) (2 5 8 4)) > (prefixes '(7 2 5 8 4)) '(() (7) (7 2) (7 2 5) (7 2 5 8) (7 2 5 8 4)) > (prefixes (range 0 11)) '(() (0) (0 1) (0 1 2) (0 1 2 3) (0 1 2 3 4) (0 1 2 3 4 5) (0 1 2 3 4 5 6) (0 1 2 3 4 5 6 7) (0 1 2 3 4 5 6 7 8) (0 1 2 3 4 5 6 7 8 9) (0 1 2 3 4 5 6 7 8 9 10))
- The length-0 prefix of
-
(8 points) Define a function
sum-max-squareEvens
that takes a list of integers its single argument and returns a triple (i.e., a three-element list) whose three elements are (1) the sum of the numbers in the list; (2) the maximum of the numbers in the list and (3) a list of the squares of all the even numbers in the list (maintaining relative order).> (sum-max-squaresEvens '(9 2 8 5 4 7 1 6 3)) '(45 9.0 (4 64 16 36)) > (sum-max-squaresEvens '(2 8 5 4 7 1 6 3)) '(36 8.0 (4 64 16 36)) > (sum-max-squaresEvens '(8 5 4 7 1 6 3)) '(34 8.0 (64 16 36)) > (sum-max-squaresEvens '(5 4 7 1 6 3)) '(26 7.0 (16 36)) > (sum-max-squaresEvens '(-9 2 -8 5 4 -7 1 -6 3)) '(-15 5.0 (4 64 16 36)) > (sum-max-squaresEvens (append (range 1 101 7) (range 201 0 -2))) '(10951 201.0 (64 484 1296 2500 4096 6084 8464))
Your
sum-max-squareEvens
function should make a single pass over the input list to produce the output triple. I.e., you should not have separate recursions for calculating each of the three parts. -
(7 points) Suppose that we represent a set in Racket as a list without duplicates. Define a function
subsets
that takes as its single argument a set and returns a list of all subsets of a given set. The subsets within the result list can be in any order, but the order of elements within each set should have the same relative order as inset
.For example here are some of the (huge number of) possible answers for
(subsets '(3 1 2))
, any single one of which would be considered correct:'(() (1) (2) (3) (1 2) (3 1) (3 2) (3 1 2)) '((3 1 2) (3 2) (3 1) (1 2) (3) (2) (1) ()) '(() (2) (1) (1 2) (3) (3 2) (3 1) (3 1 2)) '((3 1 2) () (3 1) (2) (3) (1 2) (1) (3 2))
However, lists containing subsets like
(2 1)
,(1 3)
,(3 2 1)
, or(1 2 3)
could not be solutions, since the elements of these subsets are not in the same relative order as in(3 1 2)
.
2. Wacky Lists (15 points)
This problem shows that functions can be used to implement data structures like pairs and lists. Consider the following alternatives to Racket’s usual built-in cons
, car
, cdr
, null
, and null?
:
(define kons (λ (x y) (λ (f) (f #f x y))))
(define kar (λ (k) (k (λ (b f s) f))))
(define kdr (λ (k) (k (λ (b f s) s))))
(define knull (λ (f) (f #t 0 0)))
(define knull? (λ (k) (k (λ (b f s) b))))
-
(2 points) Use the small-step substitution model (i.e., using ⇒) to show the evaluation of the value bound to the name
p
by the following declaration:(define p (kons 3 4))
- (8 points) Use the small-step substitution model (i.e., using ⇒) to show the evalulation of each of the following expressions.
(kar p)
(kdr p)
(knull? p)
(knull? knull)
-
(2 points) The following
sum-to
function uses helper functionssum
anddown-from
defined in terms of the list-like entities involvingkons
and friends. Does it actually calculate the sum of the integers from 1 ton
(inclusive)? Explain why or why not.(define (sum-to n) (sum (down-from n))) (define (sum nums) (if (knull? nums) 0 (+ (kar nums) (sum (kdr nums))))) (define (down-from n) (if (<= n 0) knull (kons n (down-from (- n 1)))))
- (3 points) Can we replace all instances of
cons
/car
/cdr
/null
/null?
in Racket bykons
/kar
/kdr
/knull
/knull?
? Are there any ways in whichkons
/kar
/kdr
/knull
/knull?
do not behave likecons
/car
/cdr
/null
/null?
3. Higher-order List Functions (35 points)
In this and the following problems you will revisit some functions from PS3 Problem 3, as well as see some new ones. However, rather than expressing them as recursions, you will express them in terms of higher-order-list-operators.
Notes:
-
For Problems 3 through 5, you should use Dr. Racket to create a single file named
yourAccountName-ps4-functions.rkt
that contains all the functions (including helper functions) that you define for these problems. -
In your definitions, you are not allowed to use recursion anywhere. (The one exception is the
inserts-rec
helper function you are given in Problem 3l.) -
In your definitions, unless otherwise instructed, you should not introduce any new named helper functions, but you can (1) liberally use anonymous functions and (2) use functions you defined in previous parts in later parts.
-
(2 points) Using Racket’s
map
, define a functionmap-remainder
that takes two arguments (an integerdivisor
and a listints
of integers) and returns an integer list the same length asints
in which every element is remainder of dividing the corresponding element ofints
bydivisor
.> (map-remainder 2 '(16 23 42 57 64 100)) '(0 1 0 1 0 0) > (map-remainder 3 '(16 23 42 57 64 100)) '(1 2 0 0 1 1) > (map-remainder 5 '(16 23 42 57 64 100)) '(1 3 2 2 4 0) > (map-remainder 17 '(16 23 42 57 64 100)) '(16 6 8 6 13 15)
-
(2 points) Using Racket’s
filter
, define a functionfilter-divisible-by
that takes two arguments (an integerdivisor
and a listints
of integers) and returns a new integer list containing all the elements ofints
that are divisible bydivisor
.> (filter-divisible-by 2 '(16 23 42 57 64 100)) '(16 42 64 100) > (filter-divisible-by 3 '(16 23 42 57 64 100)) '(42 57) > (filter-divisible-by 4 '(16 23 42 57 64 100)) '(16 64 100) > (filter-divisible-by 5 '(16 23 42 57 64 100)) '(100) > (filter-divisible-by 17 '(16 23 42 57 64 100)) '()
Use the following helper function, which is helpful in this problem and some of the following ones.
(define divisible-by? (lambda (num divisor) (= (remainder num divisor) 0)))
-
(3 points) Using Racket’s
foldr
, define a functioncontains-multiple?
that takes an integerm
and a list of integersns
that returns#t
ifm
evenly divides at least one element of the integer listns
; otherwise it returns#f
. Usedivisible-by?
from above to determine divisibility.> (contains-multiple? 5 '(8 10 14)) #t > (contains-multiple? 3 '(8 10 14)) #f > (contains-multiple? 5 '()) #f
-
(3 points) Using Racket’s
foldr
, define a functionall-contain-multiple?
that takes an integern
and a list of lists of integersnss
(pronounced “enziz”) and returns#t
if each list of integers innss
contains at least one integer that is a multiple ofn
; otherwise it returns#f
. Usecontains-multiple?
in your definition ofall-contain-multiple?
.> (all-contain-multiple? 5 '((17 10 2) (25) (3 8 5))) #t > (all-contain-multiple? 2 '((17 10 2) (25) (3 8 5))) #f > (all-contain-multiple? 3 '()) #t ; said to be "vacuously true"; there is no counterexample!
-
(2 points) Using Racket’s
foldr
, define a functionsnoc
that takes a valuex
and a listys
and returns the new list that results from addingx
to the end ofys
.> (snoc 4 '(7 2 5)) '(7 2 5 4) > (snoc 4 '()) '(4)
-
(2 points) Using Racket’s
foldr
, define a functionmy-append
that takes two lists,xs
andys
, and returns the new list that contains all the elements ofxs
followed by all the elements ofys
.> (my-append '(7 2 5) '(4 6)) '(7 2 5 4 6) > (my-append '() '(4 6)) '(4 6) > (my-append '(7 2 5) '()) '(7 2 5) > (my-append '() '()) '()
Note: You may not use Racket’s
append
in your definition. -
(2 points) Using Racket’s
foldr
, define a functionappend-all
that takes a list of listsxss
and returns a new list that contains all the elements of the sublists ofxss
in their relative order.> (append-all '((1 2) (3) (4 5 6))) '(1 2 3 4 5 6) > (append-all '((1 2) (3))) '(1 2 3) > (append-all '((1 2))) '(1 2) > (append-all '()) '() > (append-all '(((1 2) (3 4 5)) ((6)) ((7 8) () (9)))) '((1 2) (3 4 5) (6) (7 8) () (9))
Note: You may use
append
ormy-append
in your definition. -
(2 points) Using Racket’s
map
, define a functionmap-cons
that takes any valuex
and an n-element listys
and returns an n-element list of all pairs'(x . y)
wherey
ranges over the elements ofys
. The pair'(x . y)
should have the same relative position in the resulting list asy
has inys
.> (map-cons 17 '(8 5 42 23)) '((17 . 8) (17 . 5) (17 . 42) (17 . 23)) > (map-cons 3 '((1 6 2) (4 5) () (9 6 8 7))) '((3 1 6 2) (3 4 5) (3) (3 9 6 8 7)) > (map-cons 42 '()) '()
-
(4 points) Using Racket’s
foldr
, define a functionmy-cartesian-product
that takes two listsxs
andys
and returns a list of all pairs'(x . y)
wherex
ranges over the elements ofxs
andy
ranges over the elements ofys
. The pairs should be sorted first by thex
entry (relative to the order inxs
) and then by they
entry (relative to the order inys
).> (my-cartesian-product '(1 2) '("a" "b" "c")) '((1 . "a") (1 . "b") (1 . "c") (2 . "a") (2 . "b") (2 . "c")) > (my-cartesian-product '(2 1) '("a" "b" "c")) '((2 . "a") (2 . "b") (2 . "c") (1 . "a") (1 . "b") (1 . "c")) > (my-cartesian-product '("c" "b" "a") '(2 1)) '(("c" . 2) ("c" . 1) ("b" . 2) ("b" . 1) ("a" . 2) ("a" . 1)) > (my-cartesian-product '("a" "b") '(2 1)) '(("a" . 2) ("a" . 1) ("b" . 2) ("b" . 1)) > (my-cartesian-product '(1) '("a")) '((1 . "a")) > (my-cartesian-product '() '("a" "b" "c")) '()
Note: You may use
map-cons
andappend
ormy-append
in your definition. -
(3 points) Using Racket’s
foldr
, define a functionmy-reverse
that takes a listxs
and returns a new list whose elements are the elements ofxs
in reverse order. You may not use the built-inreverse
function.> (my-reverse '(1 2 3 4)) '(4 3 2 1) > (my-reverse '(1)) '(1) > (my-reverse '()) '()
Note:
- We ask you to name your function
my-reverse
because Racket already provides the same function namedreverse
(which you cannot use, of course). - You may use
snoc
orappend
ormy-append
in your definition.
- We ask you to name your function
-
(5 points) Assume that the elements of a list are indexed starting with 0. Using Racket’s
foldr
, define a functionalts
that takes a listxs
and returns a two-element list of of lists, the first of which has all the even-indexed elements (in the same relative order as inxs
) and the second of which has all the odd-indexed elements (in the same relative order as inxs
).> (alts '(7 5 4 6 9 2 8 3)) '((7 4 9 8) (5 6 2 3)) > (alts '(5 4 6 9 2 8 3)) '((5 6 2 3) (4 9 8)) > (alts '(4 6 9 2 8 3)) '((4 9 8) (6 2 3)) > (alts '(3)) '((3) ()) > (alts '()) '(() ())
Note: There is no need to treat even-length and odd-length cases differently, nor is there any need to treat the singleton list specially.
-
(5 points) Assume you are supplied with the following recursive version of the
inserts
function from PS2 Problem 4:(define (inserts-rec x ys) (if (null? ys) (list (list x)) (cons (cons x ys) (map-cons (car ys) (inserts-rec x (cdr ys))))))
Using Racket’s
foldr
, define a functionmy-permutations
that takes as its single argument a listxs
of distinct elements (i.e., no duplicates) and returns a list of all the permutations of the elements ofxs
. The order of the permutations does not matter.> (my-permutations '()) '(()) > (my-permutations '(4)) '((4)) > (my-permutations '(3 4)) '((3 4) (4 3)) ; order doesn't matter > (my-permutations '(2 3 4)) '((2 3 4) (3 2 4) (3 4 2) (2 4 3) (4 2 3) (4 3 2)) > (my-permutations '(1 2 3 4)) '((1 2 3 4) (2 1 3 4) (2 3 1 4) (2 3 4 1) (1 3 2 4) (3 1 2 4) (3 2 1 4) (3 2 4 1) (1 3 4 2) (3 1 4 2) (3 4 1 2) (3 4 2 1) (1 2 4 3) (2 1 4 3) (2 4 1 3) (2 4 3 1) (1 4 2 3) (4 1 2 3) (4 2 1 3) (4 2 3 1) (1 4 3 2) (4 1 3 2) (4 3 1 2) (4 3 2 1))
Note: It is helpful to use
append-all
,map
, andinserts-rec
in your solution.
4. forall?
, exists?
, find
, and zip
(20 points)
Below are some list-processing functions that are not built in to Racket, but are handy in many situations:
(define (forall? pred xs)
(if (null? xs)
#t
(and (pred (car xs))
(forall? pred (cdr xs)))))
(define (exists? pred xs)
(if (null? xs)
#f
(or (pred (car xs))
(exists? pred (cdr xs)))))
(define (find pred not-found xs)
(if (null? xs)
not-found
(if (pred (car xs))
(car xs)
(find pred not-found (cdr xs)))))
(define (zip xs ys)
(if (or (null? xs) (null? ys))
null
(cons (cons (car xs) (car ys))
(zip (cdr xs) (cdr ys)))))
forall?
, exists?
, and find
are higher-order list functions involving a predicate.
forall?
returns#t
if the predicate is true on all elements of the list, and otherwise returns#f
.exists?
returns#t
if the predicate is true on at least one element of the list, and otherwise returns#f
.-
find
returns the first element of the list for which the predicate is true. If there is no such element, it returns the value supplied as thenot-found
argument.> (forall? (λ (x) (> x 0)) '(7 2 5 4 6)) #t > (forall? (λ (x) (> x 0)) '(7 2 -5 4 6)) #f > (exists? (λ (x) (< x 0)) '(7 2 -5 4 6)) #t > (exists? (λ (x) (< x 0)) '(7 2 5 4 6)) #f > (find (λ (x) (< x 0)) #f '(7 2 -5 4 -6)) -5 > (find (λ (x) (< x 0)) #f '(7 2 5 4 6)) #f
The zip
function is not higher order, but combines two lists by pairing (using cons
) the corresponding elements of the two lists. If the lists do not have the same length, zip
returns a list of pairs whose length is the length of the shorter of the two input lists:
> (zip '(1 2 3) '("a" "b" "c"))
'((1 . "a") (2 . "b") (3 . "c"))
> (zip '(1 2 3 4 5) '("a" "b" "c"))
'((1 . "a") (2 . "b") (3 . "c"))
> (zip '(1 2 3) '("a" "b" "c" "d" "e"))
'((1 . "a") (2 . "b") (3 . "c"))
In this problem, you will use the forall?
, exists?
, find
, and zip
functions to define other functions. Begin this problem by copying the definitions of these four functions into the top of your yourAccountName-ps4-functions.rkt
file.
-
(3 points) Using
exists?
, define a functionmember?
that determines if an elementx
appears in a listys
.> (member? 4 '(7 2 5 4 6)) #t > (member? 3 '(7 2 5 4 6)) #f > (member? '(7 8) '((1 2) (3 4 5) (6) (7 8) () (9))) #t > (member? '() '((1 2) (3 4 5) (6) (7 8) () (9))) #t > (member? '(5 6) '((1 2) (3 4 5) (6) (7 8) () (9))) #f
Note: Use
equal?
to compare the equality of two values. -
(5 points) Using
forall?
andexists?
, define a functionall-contain-multiple-alt?
that is an alternative implementation of theall-contain-multiple?
function from Problem 3.> (all-contain-multiple-alt? 5 '((17 10 2) (25) (3 8 5))) #t > (all-contain-multiple-alt? 2 '((17 10 2) (25) (3 8 5))) #f > (all-contain-multiple-alt? 3 '()) #t ; said to be "vacuously true"; there is no counterexample!
Note: You may use the
divisible_by
function from above, but not thecontains-multiple?
function, and you may not define any new helper functions. -
(4 points) An association list is a list of pairs that represents a mapping from key to value. Each pair of key and value is represented by a cons cell, with the key in the
car
and the value in thecdr
. For example, the association list:'((2 . 3) (5 . 1) ("mountain" . #t))
maps the key
2
to the value3
, the key5
to the value1
, and the key"mountain"
to the value#t
.Using
find
, define a functionlookup
that takes a keyk
and an association listas
and returns:#f
if no mapping with keyk
was not found in the list; and- a cons cell whose
car
isk
and whosecdr
is the corresponding value for the shallowest mapping ofk
in the association list.
For example:
> (lookup 5 '((2 . 3) (5 . 1) ("mountain" . #t))) '(5 . 1) > (lookup 1 '((2 . 3) (5 . 1) ("mountain" . #t))) #f > (lookup '(6 4) '((2 . 3) (5 . 1) ((6 4) . 8) (5 . 1) (17 23 42))) '((6 4) . 8) > (lookup 17 '((2 . 3) (5 . 1) ((6 4) . 8) (5 . 1) (17 23 42))) '(17 23 42) ; '(17 23 42) has a car of 17 and a cdr of '(23 42) > (lookup 23 '((2 . 3) (5 . 1) ((6 4) . 8) (5 . 1) (17 23 42))) #f
Note: Use
equal?
to test for equality of keys. This will support keys more interesting than just simple values. -
(5 points) Using
forall?
andzip
, define a functionsorted?
that determines if a list of numbersns
is in sorted order from low to high.> (sorted? '(7 4 2 5 4 6)) #f > (sorted? '(2 3 3 5 6 7)) #t > (sorted? '(2)) #t > (sorted? '()) #t > (sorted? (range 1000)) #t > (sorted? (append (range 1000) '(1001 1000))) #f > (sorted? (range 1000 0 -1)) #f
Note: You will need to have a special case for the empty list.
-
(3 points) It is possible to define alternative versions of
forall?
andexists?
in terms offoldr
, as show below.(define (forall-alt? pred xs) (foldr (λ (x subres) (and (pred x) subres)) #t xs)) (define (exists-alt? pred xs) (foldr (λ (x subres) (or (pred x) subres)) #f xs)) > (forall-alt? (λ (x) (> x 0)) '(7 2 5 4 6)) #t > (forall-alt? (λ (x) (> x 0)) '(7 2 -5 4 6)) #f > (exists-alt? (λ (x) (< x 0)) '(7 2 -5 4 6)) #t > (exists-alt? (λ (x) (< x 0)) '(7 2 5 4 6))
However, just because it’s possible to define a function in terms of
foldr
does not mean its a good idea. Give a concrete example of a situation in whichforall?
is better thanforall-alt?
.Note: For this problem, it’s critical to understand that
(and e1 e2)
desugars to(if e1 e2 #f)
5. foldr-ternop
(10 points)
Sometimes it is difficult to express a recursive list accumulation in terms of foldr
because the binary combiner function needs more information from the list than its first element. The following foldr-ternop
higher-order list function solves this problem by having the combiner function be a ternary (i.e., three-argument) function that takes both the first and rest of the given list in addition to the result of recursively processing the list:
(define (foldr-ternop ternop null-value xs)
(if (null? xs)
null-value
(ternop (first xs)
(rest xs)
(foldr-ternop ternop null-value (rest xs)))))
In this problem, you will use foldr-ternop
to implement two list functions that are very challenging to implement in terms of foldr
(see the extra credit problem below). Begin this problem by copying the definition of foldr-terntop
into the top of your yourAccountName-ps4-functions.rkt
file.
-
(5 points) Using
foldr-ternop
, define a functioninserts
that takes a valuex
and an n-element listys
and returns an n+1-element list of lists showing all ways to insert a single copy ofx
intoys
.> (inserts 3 '(5 7 1)) '((3 5 7 1) (5 3 7 1) (5 7 3 1) (5 7 1 3)) > (inserts 3 '(7 1)) '((3 7 1) (7 3 1) ( 7 1 3)) > (inserts 3 '( 1)) '((3 1) (1 3)) > (inserts 3 '()) '((3)) > (inserts 3 '(5 3 1)) '((3 5 3 1) (5 3 3 1) (5 3 3 1) (5 3 1 3))
Notes:
-
Your definition should have exactly this pattern:
(define (inserts-foldr x ys) (foldr-ternop {ternary-combiner} {null-value} ys))
-
You may use
map-cons
in your ternary-combiner function.
-
-
(5 points) Using
foldr-ternop
, define a functionsorted-alt?
that is an alternative implementation of thesorted?
function from Problem 4.> (sorted-alt? '(7 4 2 5 4 6)) #f > (sorted-alt? '(2 3 3 5 6 7)) #t > (sorted-alt? '(2)) #t > (sorted-alt? '()) #t > (sorted-alt? (range 1000)) #t > (sorted-alt? (append (range 1000) '(1001 1000))) #f > (sorted-alt? (range 1000 0 -1)) #f
Note:
-
Your definition should have exactly this pattern:
(define (sorted-alt? xs) (foldr-ternop {ternary-combiner} {null-value} xs))
-
Extra Credit: Using foldr
to define inserts and sorted? (20 points)
This problem is optional. You should only attempt it after completing all the other problems.
As noted in Problem 5, it is challenging to define inserts
and sorted
in terms of foldr
, but it turns out that it is stil possible to do this.
-
(8 points) Using
foldr
, define a functioninserts-foldr
that is an alternative implementation of theinserts
function from Probem 5.> (inserts-foldr 3 (list 5 7 1)) '((3 5 7 1) (5 3 7 1) (5 7 3 1) (5 7 1 3)) > (inserts-foldr 3 (list 7 1)) '((3 7 1) (7 3 1) ( 7 1 3)) > (inserts-foldr 3 (list 1)) '((3 1) (1 3)) > (inserts-foldr 3 null) '((3)) > (inserts-foldr 3 (list 5 3 1)) '((3 5 3 1) (5 3 3 1) (5 3 3 1) (5 3 1 3))
Note:
-
Your definition should have exactly this pattern:
(define (inserts-foldr x ys) (foldr {binary-combiner} {null-value} ys))
-
You may use
map-cons
in your binary-combiner function.
-
-
(12 points) Using
foldr
, define a functionsorted-foldr?
that is an alternative implementation of thesorted?
function from Problem 5.> (sorted-foldr? (list 7 4 2 5 4 6)) #f > (sorted-foldr? (list 2 3 3 5 6 7)) #t > (sorted-foldr? (list 2)) #t > (sorted-foldr? (list)) #t
Note:
-
Your definition should have exactly this pattern:
(define (sorted-foldr? x ys) (cdr (foldr {binary-combiner} (cons {null-value1} {null-value2}) ys)))
The idea is to accumulate a pair of (1) the first element of the rest of the list (or
#f
if there is none) and (2) a boolean indicating whether the rest of the list is sorted.Note: In an earlier version of this problem,
sorted-foldr?
was incorrectly namedinserts-foldr
.
-