Problem set 6: Unions and recursion
This assignment is due on Wednesday, October 9 at 11:59pm. Submit it using Handin as assignment ps6. Corrections can be presented until Friday, November 1.
This problem set builds on the skills that we introduced in Lectures 2−9 and 11−12. To encourage you to review those lectures, your grade on this assignment will be capped by your grade on those lectures. You can resubmit lecture exercises at any time.
Remember to follow the design recipe whenever you design or write a function. In particular, every type mentioned in a signature must be introduced by a data definition, except for these well-known types: Number, Image, String, Color, Boolean, KeyEvent, MouseEvent, Posn, Anything.
1 Processing shows
; A Show is one of: ; - (make-movie String Number Number) ; - (make-sitcom String Number Number) (define-struct movie (title year minutes)) (define-struct sitcom (series season episode))
(define show1 (make-movie "One Cut of the Dead" 2017 97)) (define show2 (make-sitcom "Rick and Morty" 2 6)) (define show3 (make-movie "Welt am Draht" 1973 205)) (define show4 (make-sitcom "Futurama" 4 15))
Exercise 1. Write the template for a function that processes a Show. Make it look like a function called process-show, and do not put it in a comment.
Exercise 2. Design a function called show-minutes that computes how many minutes a given Show lasts. A sitcom lasts 20 minutes.
Exercise 3. Design a function called show-name that produces a string that names a given Show, like "One Cut of the Dead (2017)" or "Rick and Morty S2E6".
2 Charting jobs
; A Job is one of: ; - FILL IN THIS BLANK ; - FILL IN THIS BLANK
An entry structure represents the first job that someone gets when they begin a career. It should contain the initial salary.
A promotion structure represents a later job that someone switches into after they begin a career. It should contain the raise (the difference between the old salary and the new salary) and should also contain the old job. The old job may be either an entry or a promotion.
Exercise 5. Define three examples of Jobs.
Exercise 6. Write the template process-job for your data definition Job.
Exercise 7. Design a function salary that accepts a Job and returns its salary, which is the initial salary of the entry plus all the raises of the promotions.
Exercise 8. Design a function pay-cut? that accepts a Job and determines whether it contains a negative raise at any point in time. Your function should return a Boolean. (A negative initial salary is not a pay cut.)
Exercise 9. Design a function promote that takes a Job and a raise amount, and returns the new Job that someone with the given Job would have after getting the given promotion.
Exercise 10. Design a function chart that takes a Job and draws a vertical bar chart that shows the history of Jobs that lead from the oldest (the leftmost bar, representing the entry) to the latest (the rightmost bar). For example, the vertical bar chart to the side depicts a Job that consists of an entry (like all Jobs) and four promotions.
The beside/align function will be very useful here. Look up its documentation and pay attention to what it produces when its first input is "bottom". You will also need the salary function you designed in Exercise 7. Scale the bars so that they fit comfortably on your screen for the example Jobs you defined in Exercise 5.
Hint: If you’re not sure how to fill in the template, calculate step-by-step from an example.
3 Calder mobiles
Learn about the whippletree mechanism used to balance physical load among farm working animals and along windshield wiper blades.
The Saint Louis Art Museum (free!) houses a nice Calder mobile in its collection.
The Museum of Contemporary Art in Chicago owns several Calder mobiles. Both photos of Calder mobiles in this section are from there.
The Calder Foundation Web site shows a variety of Calder mobiles.
Wikipedia describes a mobile as “a number of rods, from which weighted objects or further rods hang. The objects hanging from the rods balance each other, so that the rods remain more or less horizontal.”
; A Mobile is one of: ; - (make-leaf Number) ; - (make-rod Mobile Number Number Mobile) (define-struct leaf [weight]) (define-struct rod [lm ld rd rm])
Exercise 11. Define three examples of Mobiles as constants, a leaf and two rods. Call them mobile1, mobile2, mobile3.
Exercise 12. Write the template process-mobile for a function that processes a Mobile.
Exercise 13. Design a function weight that takes a Mobile as input and computes its total weight. For simplicity, assume that the connection between the two sub-mobiles of a rod adds no weight.
Exercise 14. Design a function average-leaf-weight that takes a Mobile as input and computes its leaves’ average weight. You’ll need a helper function that also takes a Mobile as input.
; balanced? : Mobile -> Boolean ; determines whether the given mobile is balanced at the top (define (balanced? m) (cond [(leaf? m) true] [(rod? m) (= (* (rod-ld m) (weight (rod-lm m))) (* (rod-rd m) (weight (rod-rm m))))]))
Exercise 16. Design a function lighten that takes a Mobile as input and returns a new Mobile that is like the given one except everything weighs half as much as the given one. (So, your unbalanced-count function should produce the same result for the given and returned mobiles.)
Exercise 17. Design a function enlarge that takes a Number and Mobile as inputs and returns a new Mobile that is like the given one except all the distances are that many times as long as the given one. (So, your weight, average-leaf-weight, and unbalanced-count functions should produce the same results for the given and returned mobiles.)
Exercise 18. Design a function all-balanced-mobile that takes a positive integer as input and returns a Mobile that has exactly that many leaves (with positive weights) and whose unbalanced-count is 0.
; A PositiveInteger is one of: ; - 1 ; - (+ PositiveInteger 1)
; process-positive-integer : PositiveInteger -> ... (define (process-positive-integer n) (cond [(= n 1) ...] [else (... (process-positive-integer (- n 1)))]))
; counterbalance : Mobile -> Mobile ; adds a leaf to a given mobile in a balanced? way (define (counterbalance m) (make-rod m 20 20 (make-leaf (weight m))))
Hint 3: Study the excerpt below from Orange Under Table, 1949.
Help other students by answering this ungraded question: what did you have to learn to finish this problem set that we didn’t teach? Post your answer to Discord in the #ps6 channel, or put it as a comment at the bottom of your Handin submission.
4 Challenge: abstract painting
; A Painting is one of: ; - (make-solid String) ; - (make-hsplit Painting Painting) ; - (make-vsplit Painting Painting) (define-struct solid [color]) (define-struct hsplit [top bottom]) (define-struct vsplit [left right])
After you have defined several example Paintings, finish designing the following function so that you may visualize them:
; draw-painting : Painting Number Number -> Image ; draws the given painting with the given width and height ; (define (draw-painting p w h) ...)
In this challenge, you will design an interactive big-bang program that allows you to view a Painting and update the colors by clicking. For example, when I click on the rightmost rectangle of this picture
,
I see
.
To get started, we suggest that you design a program which turns any rectangle you click on to a particular color (e.g. "black"). This should be done with a function update which takes a Painting, a width, a height, an x-coordinate and a y-coordinate. The latter two inputs are understood as the point inside the rectangle whose color you would change. Note that the functions draw-painting and update do not have the required signatures to be used directly by big-bang; so you will have design two corresponding functions which call them as helpers using a width and a height that you pick.
Once you have this working, define an enumeration which contains a selection of colors (your palette) and a function next-color which can be used to cycle the color of a rectangle by repeated clicking.