You are on page 1of 4

Hashing and Classes

Session Overview
This lecture starts by showing how hashing can be used to achieve near constant time lookups and the concept of classes as understood by a computer. It then introduces exceptions. Image courtesy of donovanbeeson on Flickr.

Session Activities
Lecture Videos

Lecture 10: Hashing and Classes (00:44:57)

About this Video Topics covered: Hashing, bucket, collision, linear rehash, exceptions, classes, modules, built-in classes. Resources

Lecture code handout (PDF) Lecture code (PY)

Check Yourself
What does hashing do? answer

It converts the object to be hashed into an int that lies within a pre-defined range.

What is a bucket? answer A list of items that have the same hash value.

What are try blocks for? answer Try blocks are used when a piece of code may not work in all cases or for all inputs. It consists of a try statement and an except statement. First the try statement is executed; if it throws an exception, the program uses the except statement instead of terminating the program.

What does polymorphic mean? answer Works with a variety of different types.

What is a module? answer A collection of related functions.

What is an object?

answer A collection of data and functions that operate on that data.

Problem Sets
Problem Set 4: The Caesar Cipher (Due) This assignment will deal with a well-known (though not very secure) encryption method called the Caesar cipher. In this problem set you will need to devise your own algorithms and will practice using recursion to solve a non-trivial problem.

Instructions (PDF) Pseudocode (PDF) Code Files (ZIP) (This ZIP file contains: 1 .py file and 3 .txt files.) Solutions (ZIP) (This ZIP file contains: 2 .py files.)

Problem Set 5 (Assigned) Problem set 5 is assigned in this session. The instructions and solutions can be found on the session page where it is due, Lecture 12 Introduction to Simulation and Random Walks.

Further Study
These optional resources are provided for students that wish to explore this topic more fully. Readings After watching the lecture, you may want to read some of the following resources:

12. Classes and objects. How to Think Like a Computer Scientist.

Related Lectures

6.006 Introduction to Algorithms. 6.006 lectures assume a greater level of mathematical sophistication than does 6.00SC. Read the lecture notes on: o Hashing I: Chaining, hash functions o Hashing II: Table doubling, Karp-Rabin o Hashing III: Open addressing

You might also like