Skip to main content

Schedule

Skip to schedule Week 1 | Week 2 | Week 3 | Week 4 | Week 5 | Week 6 | Week 7 | Week 8 | Week 9 | Week 10 | Week 11 | Week 12 | Week 13 | Week 14

Week 0
Date Topic Reading(s) Lab Work Due
8/25 An introduction to algorithms
We begin the class by exploring the definition of computer science and by trying to write some basic algorithms.
  • No reading
  • No lab
Week 1
Date Topic Reading(s) Lab Work Due
8/27
8/28 Getting started with Linux and Scheme
We begin to consider the content and structure of the course. We also prepare ourselves to use our laboratory environment (that is, the Linux workstations and the DrRacket Programming Environment).
8/30 Basic types
We explore some of the basic types in Scheme and the operations available for those types.
9/1 Introducing lists
We start to explore Scheme’s list data structure and some ways to use lists to work with collections of data.
Week 2
Date Topic Reading(s) Lab Work Due
9/4 Writing your own procedures
We consider new ways to write your own procedures and why you might do so.
9/5
9/6 Pair programming
We explore the whys and hows of working with others. We also catch up on any confusing issues from the first few days of class.
  • No lab
9/8 Documenting programs and procedures
We consider documentation for your programs: Why to write documention, when to write documentation, how to write documentation. We also explore the 6P style of documentation that we use in this course.
  • No lab
Week 3
Date Topic Reading(s) Lab Work Due
9/11 Testing your procedures
We consider testing: When, why, and how you might test the proceduresand programs that you write.
  • Lab writeup for class 7 (by 10:30 p.m.)
9/12
9/13 Tables and compound data
We consider how to deal with compound data, such as the title, lattitude, longitude, time, and date of an event.
9/15 Reading lists and tables from files
We consider a variety of techniques for gathering lists and tables of data from files.
Week 4
Date Topic Reading(s) Lab Work Due
9/18 Boolean values, predicate procedures, and list filters
We consider a new type and its use in selecting elements from lists.
9/19
9/20 Local bindings
We consider how and why to name values within procedures.
9/22 Conditionals
We consider one of the central components of algorithms.
Week 5
Date Topic Reading(s) Lab Work Due
9/25 Discussion of exam 1
We consider your work on exam 1.
  • No reading
  • No lab
9/26
9/27 Displaying data
We explore techniques for displaying simple kinds of data, such as coordinate pairs or counts of categorical data.
  • Flashcards for week 5 (by 8:00 p.m.)
9/29 Preconditions, revisited
We revisit preconditions. We then consider programming techniques for ensuring that preconditions are met.
Week 6
Date Topic Reading(s) Lab Work Due
10/2 Recursion basics
We begin our exploration of recursion, the most general form of repetition available in Scheme. You can use recursion to both build and iterate over different kinds of values.
  • No lab
10/3
10/4 Recursion basics lab
We continue our exploration of recursion basics.
  • Flashcards for week 6 (by 8:00 p.m.)
10/6 Recursion with helper procedures
We consider a different form of recursion, one based on the construction of recursive helper procedures that take additional parameters. Along the way, we consider the idea of tail recursion. We also explore how careless design of recursive procedures can inadvertently lead to slow execution.
Week 7
Date Topic Reading(s) Lab Work Due
10/9 Other forms of list recursion
We conclude our initial forays into list recursion by looking for some common patterns in the design of recursive procedures.
10/10
10/11 Numeric recursion
We consider a slightly different kind of recursion, numeric recursion. In this technique, we once again have procedures call themselves. However, the parameter that we “simplify” at every step is a number, rather than a list.
10/13 Naming local procedures
We explore how and why one writes local recursive procedures.
Fall Break
Week 8
Date Topic Reading(s) Lab Work Due
10/23 Debugging
We explore techniques for undersatnding and correcting flaws in our programs
10/25 Randomness and simulation
We consider Scheme’s random procedure and how one might use that procedure in writing simple simulations
10/27 Pairs and pair structures
We consider pairs, the basic data type used to build lists and other structures in Scheme. We also consider why it is useful to understand about pairs.
Week 9
Date Topic Reading(s) Lab Work Due
10/30 Vectors
We consider vectors, an alternative to lists for storing collections of data.
10/31
11/1 Trees
We consider trees, structures built from pairs. Trees are somewhat like two-dimensional lists.
11/3 Higher-order procedures, revisited
We revisit the topic of higher-order procedures, one of the most important techniques in languages like Scheme. Higher-order procedures are procedures – like map, left-section, or compose – that take other procedures as parameters, return other procedures as values, or both.
  • Quiz 9
Week 10
Date Topic Reading(s) Lab Work Due
11/6 Files in Scheme
We revisit files, considering the lower-level operations for working with files, a technique for structuring information that permits the information to persist across invocations of Scheme. Files also let our Scheme programs share information with other programs.
11/7
11/8 Pause for Breath
We pause to explore some recent complexities
  • No reading
  • No lab
11/10 Project introduction
We introduce the project.
  • No reading
  • No lab
  • Quiz 10
Week 11
Date Topic Reading(s) Lab Work Due
11/13 Analyzing procedures
We explore techniques for analyzing the number of calls made in evaluating procedures, particularly recursive procedures. We consider why such analysis is useful.
11/14
11/15 Association lists
We consider association lists, a simple, but useful, technique for organizing tables of information.
11/17 Project work day 1
We provide time for groups to work on their projects.
  • No reading
  • No lab
Week 12
Date Topic Reading(s) Lab Work Due
11/20 Binary search
We consider the general problem of searching. We explore binary search, one of the most efficient algorithms for searching.
  • Project Proposal (by 10:30pm)
11/22 Project work day 2
We provide additional time for groups to work on their projects.
  • No reading
  • No lab
Thanksgiving Break
Week 13
Date Topic Reading(s) Lab Work Due
11/27 An introduction to sorting
We explore the problem of sorting. When you sort a list, vector, or other collection, you put the elements in order. The order of the elements usually corresponds to the type of the elements. We might sort strings alphabetically, grades numerically, colors by brightness, and so on and so forth.
  • No reading
  • No lab
11/28
11/29 Insertion Sort
We move from our general exploration of sorting to the implementation of a particular sorting algorithm, insertion sort. We also explore how the running time for that algorithm varies based on the number of values we are sorting.
12/1 Merge Sort
We continue our exploration of sorting by considering the applicability of the divide-and-conquer approach to the problem of sorting. We look at one particular divide-and-conquer algorithm, merge sort. We explore how the running time for that algorithm varies based on the number of values we are sorting.
Week 14
Date Topic Reading(s) Lab Work Due
12/4 Pause for breath
We pause to consider a few final topics
  • No reading
  • No lab
12/6 Project presentations
We explore some of your projects.
  • No reading
  • No lab
12/7
12/8 Wrap Up
We conclude the course.
  • No reading
  • No lab
Finals Week
Date Topic Reading(s) Lab Work Due
12/14 Final Exam (some time this week)
  • No reading
  • No lab