Algorithms and OOD (CSC 207 2014F) : EBoards

CSC207.01 2014F, Class 43: Implementing Dictionaries with Binary Search Trees


New lab partners!

Overview

Preliminaries

Admin

Upcoming Work

Extra Credit

Academic

Peer Support

Miscellaneous

Academic honesty (in 151)

The mistakes faculty made: One of the problems on exam 3 showed up on a lab that students did while taking the exam. Here's our solution.

(define turtle-polygon!
 (lambda (turtle side-length sides)
   (let ([angle (- 180 (/ (* 180 (- sides 2)) sides))])
     (repeat sides
             (lambda (turtle)
               (turtle-forward! turtle side-length)
               (turtle-turn! turtle angle))
             turtle))))

What would you do about a student who turned in an identical solution and did not cite ours?

Some data

Preregistratation and department responses

Questions

About binary search trees

Lab