CS61A - Summer 2013 - Rlists
Notes:
Rlists As Functions
What exactly are rlists? rlists are a CS61A abstraction that defines a series of pairs that connect together by accessing the first
and rest
elements of the pair. We have defined the following constructs for our rlist abstraction:
(Read More!)
Practice Problems:
Below are a list of practice problems, test what you've learned!
- Map Rlist
- Filter Rlist
- Sort Rlist Challenge
- Map and Filter Rlist (Object Version) Challenge