Functional Problem Solving (CSC 151 2014F) : EBoards

CSC151.01 2014F, Class 47: Binary Search Lab


Overview

Preliminaries

Admin

Upcoming Work

Things to Consider

Extra Credit Opportunities

Academic

Peer Support

Questions

Exploring the search API

We are working with sorted lists of values (courses at Grinnell)

    (vector
     (list "CSC" 151 1 "Functional Problem Solving" -5)
     (list "CSC" 161 2 "Imperative Problem Solving" 0)
     (list "CSC" 151 2 "Functional Problem Solving" 5)
     (list "HUM" 250 1 "Whatever Monessa is teaching" 100))

Our goal is to search this. What do we need to know to search?

Remaining questions

Could you go over vector-sorted??

What is an example of a nonlinear data structure?

Lab

For the writeup, go to http://bit.ly/151-2014F-w47