Hw07 of CS61A of UCB(2021-Fall)
Q1: Thane of Cadr
Define the procedures
cadr
andcaddr
, which return the second and third elements of a list, respectively. If you would like a quick refresher on scheme syntax consider looking at Lab 10 Scheme Refresher.
We need to implement the function c???r
. To have a better understanding of this notation, you should look from back to the front in ???
. For example, the cadr
function will call cdr
then call car
on the input.