6.7
Week 11 Set a
Programming Language ISL
Due Date Mon at 9pm (Week 11)
Purpose To study an important case of binary search
Finger Exercises
None.
Graded Exercises
Exercise 1 From HtDP,
451.
Instead of the definition for table-ref in the book, please use
; Table N -> Number |
; looks up the ith value in array of t |
(define (table-ref t i) |
(local ((define array (table-array t))) |
(array i))) |