CMSC 341 Data Structures
Spring 2005 - Section 0201
Tuesday & Thursday 7:00 - 8:15pm LH5
Mr. Daniel J. Hood

Course Description

Data Structures are the paramount concern of this course. The principle objective of the course is to help you learn how to design and analyze a wide range of data structures.

The course covers data structures and associated algorithms. Relationships among data structures, their utility in various situations, and factors affecting their performance in algorithms will be considered. You will learn to analyze the demands of algorithms, how to choose appropriate data structures, and how to integrate data structures into algorithms.

Textbooks

Required:
Data Structures and Algorithm Analysis in C++, 2nd Edition
by Mark Allen Weiss
Addison-Wesley, ISBN 0-201-36122-1

Recommended:

Your favorite C++ reference book:

My personal favorite
The C++ Programming Language, Special Edition
by Bjarne Stroustroup (He's the guy who invented the language)
Addison-Wesley, 2000, ISBN 0-201-70073-5
C++ Primer, Third Edition
by Stanely B. Lippman, Josee Lajoie
Addison-Wesley, 1998, ISBN 0-201-82470-1
C++ FAQs, Second Edition
by Marshall Cline, Greg Lomow, Mike Girou
Addison-Wesley, 1999, ISBN 0-201-30983-1
Effective C++ Second Edition
by Scott Meyers
Addison-Wesley, 1997, ISBN 0-201-92488-9
More Effective C++
by Scott Meyers
Addison-Wesley, 1995, ISBN 0-201-63371-X
Thinking in C++
by Bruce Eckel
Prentice Hall, 2000, ISBN 0-139-79809-9
This book is available in its entirety on the web at:
www.mindview.net/Books/TICPP/ThinkingInCPP2e.html

Additional Books on Data Structures:

Data Structures and Algorithm Analysis
by Clifford Shaffer
Prentice-Hall, 1996, ISBN 0-130-28446-7
This book has good coverage of data structures and algorithm analysis in C++. It has excellent descriptions of a number of data structures.
Data Structures, Algorithms, and Applications in C++
by Sartaj Sahni
McGraw-Hill, 1998, ISBN 0-071-09219-6
Covers some material not covered by the Heileman text.
Data Structures and Algorithms
by Alfred Aho, John Hopcroft, and Jeffrey Ullman
Addison-Wesley, 1983, ISBN 0-201-00023-7
This is one of the all-time classics, written in Pascal.
Fundamentals of Data Structures in C++
by Ellis Horowitz, Sartaj Sahni, and Dinesh Mehta
W H Freeman & Co, 1995, ISBN 0-716-78292-8
Another classic. In C++. This is one of the all-time classics, written in Pascal.
Abstract Data Types
by Nell Dale and Henry Walker
Houghton Mifflin Company College Division, 1996, ISBN 0-669-40000-9
A high-level view of data structures and algorithms, with no programming language specified. A very worthwhile and modern text with an alternative viewpoint.

Prerequisites

We will assume that you have mastered the material from CMSC 201, CMSC 202, and CMSC 203, including mastery of the C++ language. We will not review material that has been covered in the prerequisite courses. We do cover a few of the data structures from CMSC 202, but from a deeper point-of-view. A few advanced C++ topics such as templates and exceptions will be reviewed.

Grading

Your grade for this course will be based upon 5 projects, 2 in-class exams and the final exam. The projects are worth 40% of your grade, each project weighted equally. Each in-class exam is worth 20 percentage points; the final is worth 20 points. Note that the due dates for the projects and the dates of the exams are already set (q.v., the syllabus and project policy handout). Please plan your schedules accordingly. Makeup exams will be given only under the most dire circumstances (almost never) with appropriate documentation.

Your final letter grade is based on the standard formula:

0 <= F < 60, 60 <= D < 70, 70 <= C < 80, 80 <= B < 90, 90 <= A <= 100

These levels may be adjusted slightly in your favor, but grades will not be "curved" in the conventional sense.

Your grade is given for timely work done during the semester; incomplete grades will only be given for medical illness or other such dire circumstances (again, with documentation).

If you have a concern about a grade (i.e. you are looking for more points back) on either a project or an exam, you have 1 week from the date that the assignment is returned in class (whether picked up or not) to make arrangements to discuss your situation. After 1 week, it is assumed that you accept your grade and it becomes final.

Attendance and Readings

You are expected to attend all lectures. You are responsible for all material covered in the lecture, even if it is not in the textbook. You should keep up with the assigned readings during the semester. Some reading material will be distributed through the course web page. You are responsible for the material in the readings, even if it is not covered during lecture.

You must study to do well in this course. It will not be enough to attend lectures and do the homework. As advanced undergraduates, you will be responsible for learning material that is not necessarily covered in lectures. A prime learning requirement is that you contribute to class discussions and raise questions about the course material.

BlackBoard Discussion Board

A BlackBoard site has been created for this course. This site is used primarily to support discussion boards, but announcements are also posted there.

A discussion board will be established for each programming project. Students are encouraged to post general project questions, answer questions posted by other students or just browse the discussion board to find answers to project questions. Your instructors and TAs will also be posting questions and answers. Your questions may be posted anonymously.

Other discussion boards for topics such as general C++ questions will also be established. The course BlackBoard is accessed by logging on to my.umbc.edu and clicking on the BlackBoard tab at the top of the page.

Contacting Me or the TAs

Please feel free to visit me or the TAs during our office hours. If you can't make it during the regular hours, please ask for an appointment. We will do everything we can to be available to provide help with this course. Office hours, phone numbers and other contact information is available on-line. If you need to contact any of the course staff outside of lecture and office hours, email is much better than the telephone. You should, however, observe the following etiquette:

Academic Integrity

Cheating in any form will not be tolerated. Instances of cheating will be reported to the UMBC Academic Conduct Committee. These reports are filed by the Committee and can be used for disciplinary action such as a permanent record on your transcript. Academic honesty is absolutely required of you. You are expected to be honest yourself and to report any cases of dishonesty you see among other students in this class. Reports of dishonest behavior will be kept anonymous.

Further details on honesty in doing projects for this course are on-line at the Project Policy link.

Students are welcome and encouraged to study together for exams, but examinations are to be your own work - not your neighbor's and not your notes. All exams are closed-book, closed-notes. Only pencils (or pens) and erasers are permitted in the exam room unless otherwise indicated. Photo ID will also be required for the exams. Scratch paper is provided to you, as needed. Having any other materials in your possession during an exam will be taken as evidence of cheating and dealt with accordingly.

Syllabus

Class
Date
Topic
Reading
1 Tuesday February 1 Introduction and C++ MAW 1
2 Thursday February 3 C++ and OOP MAW 1
Monday February 7
Project 1 Assigned
3 Tuesday February 8 Asymptotic Analysis MAW 2
4 Thursday February 10 Asymptotic Analysis MAW 3
5 Tuesday February 15 List ADT and Implementations MAW 3
6 Thursday February 17 List Implementations MAW 3
Sunday February 20
Project 1 Due at 11:59pm
7 Tuesday February 22 Stacks, Queue, Dequeue ADT MAW 3
8 Thursday February 24 Stacks, Queue, Dequeue ADT MAW 3
9 Tuesday March 1
Exam 1
Classes 1 - 8
Wednesday March 2
Project 2 Assigned
10 Thursday March 3 Recursion class notes
11 Tuesday March 8 Binary Search trees MAW 4
12 Thursday March 10 Binary Search Trees MAW 4
13 Tuesday March 15 Balanced Search Trees MAW 4
Tuesday March 15
Project 2 Due at 11:59pm
Wednesday March 16
Project 3 Assigned
14 Thursday March 17 Balanced Search Trees MAW 4
Tuesday March 22
Spring Break
Thursday March 24
Spring Break
15 Tuesday March 29 Balanced Search Trees MAW 4
16 Thursday March 31 Balanced Search Trees MAW 4 & 12
17 Tuesday April 5 Balanced Search Trees MAW 4 & 12
Tuesday April 5
Project 3 Due at 11:59pm
18 Thursday April 7 Hashing MAW 5
19 Tuesday April 12
Exam 2
Classes 10 - 17
Wednesday April 13
Project 4 Assigned
20 Thursday April 14 Hashing MAW 5
21 Tuesday April 19 Hashing MAW 5
22 Thursday April 21 Priority Queues and Heaps MAW 6
23 Tuesday April 26 Priority Queues and Heaps MAW 6
Tuesday April 26
Project 4 Due at 11:59pm
24 Thursday April 28 Skip Lists MAW 10 + notes
Monday May 2
Project 5 Assigned
25 Tuesday May 3 Skip Lists MAW 10 + notes
26 Thursday May 5 Disjoint Sets MAW 8
27 Tuesday May 10 B - Trees MAW 4 + notes
28 Thursday May 12 B - Trees MAW 4 + notes
Sunday May 15
Project 5 Due at 11:59pm
29 Thursday May 17 Open / Review

Thursday May 19
8:30PM - 10:30PM
Final Exam
Classes 19 - 28

Course Web Pages

A few handouts will be provided in paper form at the first class. After that, all handouts will be provided only on the web. The Coursewide CMSC 341 web page URL is:

www.cs.umbc.edu/courses/undergraduate/341/spring05/

I have also put together a webpage specific to the 0201 section, it is at:

www.cs.umbc.edu/courses/undergraduate/341/spring05/hood/

Please check both web pages frequently. Any changes to the coursewide page will be mentioned in the "Latest News" link.


Last modified on Thursday, 17-Mar-2005 15:26:59 EST by Daniel J. Hood
Email: dhood2@cs.umbc.edu
Back up to the Spring 2005 Section 0201 Homepage
Back up to Spring 2005 CMSC-341 Homepage