CSC 427: Data Structures and Algorithm Analysis
Fall 2011



11:00-12:15 TuTh
207 Hitchcock
Dr. David Reed
203D Hitchcock      x2583
DaveReed@creighton.edu


Text: Introduction to the Design and Analysis of Algorithms, 2nd ed., Anany Levitin, Addison Wesley, 2006.

Prerequisites: CSC 222, CSC 309.

Course Description

This is the third course in the computer science sequence, building upon the concepts and skills acquired in the first year. Whereas CSC 221 focused on the design of simple algorithms and CSC 222 focused on basic data structures, this course considers both facets of problem solving and their interrelationships. In order to solve complex problems efficiently, it is necessary to design algorithms and data structures together since the data structure is motivated by and affects the algorithm that accesses it.

As the name of the course suggests, special attention will be paid to analyzing the efficiency of specific algorithms, and how the appropriate data structure can affect efficiency. Specific topics covered in this course will include: advanced data structures (e.g., lists, trees, graphs and hash tables), common algorithms and their efficiency (e.g., binary search, heapsort, graph traversal, and big-Oh analysis), and problem-solving approaches (e.g., divide-and-conquer, backtracking, and dynamic programming).

The specific goals of this course are:


Required Work

Students will complete 5-7 assignments throughout the semester. Most assignments will involve the design and implementation of Java programs that appropriately utilize data structures and algorithms. Assignments may also contain written components, for example, justifying design choices or analyzing program behavior. Late assignments will be accepted up to 7 days after their due date, with a 25% penalty. Beyond 7 days, late submissions will not be accepted. There will be (roughly) weekly quizzes, one 75-minute midterm exam, and a cumulative final exam (see the schedule below for exam dates).

There is no specific attendance policy for the course, although it is expected that absences will leave the student unprepared for tests and assignments. Quizzes and tests will not be rescheduled except in extreme circumstances. However, the lowest quiz grade will be dropped. The final grade for the course will be based on the following weightings:

weekly quizzes/exercises 05 %
5-7 programming assignments 45 %
75-minute midterm exam 20 %
100-minute final exam 30 %

At the minimum, traditional grading cutoffs for the final average will apply. That is, 90% is guaranteed an A, 87% is guaranteed a B+, etc. Depending on class performance, some shifting of grades (in an upward direction only) may occur as final letter grades are assigned.

It is expected that all students check their Creighton email accounts regularly. Official announcements, such as assignment revisions or class cancellations, will be distributed through Creighton email.


Policy on Collaboration

Creighton's policy on cheating and plagiarism is spelled out in the the Student Handbook, with college procedures available online at www.creighton.edu/fileadmin/user/CCAS/docs/2010_Site/academic_honesty_policy.pdf. In addition to this, the following guidelines hold pertaining to programs. Programs are to be the sole work of the student -- collaboration on the design or coding of a program is not allowed. Questions regarding homework assignments should be directed at the instructor only. Students may seek debugging assistance or clarifications on assignments using the class mailing list. Repeat: All student interactions regarding homework assignments must take place via the class mailing list!

Violations of this collaboration policy will be dealt with severely, with possible outcomes including failure in the course. In the case of programming assignments, you are encouraged to start early so that there is time to seek help from the instructor as the need arises.


Daily Schedule (check regularly for updates)

Date Topic Readings Assignments
Aug 25 Course overview. (ppt/pdf)
30
Sep 1
Java basics: (ppt/pdf)
     classes & objects, control, arrays/ArrayLists,
221 material
222 material
HW1: due 9/12
 
6
8
     sick/work day,
     efficiency, interfaces, inheritance.
 
 
13
15
Java Collections: (ppt/pdf)
     List, Set, Map.
Ch. 1  
 
20
22
design/coding exercise
Algorithm analysis: (ppt/pdf)
Ch. 2 HW2: due 9/29
 
27
29
     Big-Oh, rate of growth, recurrence relations.
Brute force: (ppt/pdf)
Ch. 3  
HW3: due 10/11
Oct 4
6
     generate & test, nP-hard, efficiency.
Divide-and-conquer, part 1: (ppt/pdf)
Ch. 4  
 
11
13
     sorting, tree traversals, review.
MIDTERM EXAM
 
 
 
 
18
20
FALL BREAK -- NO CLASS
25
27
Divide-and-conquer, part 2: (ppt/pdf)
     tree algorithms, binary search trees.
Ch. 4 HW4: due 11/4
 
Nov 1
3
Transform-and-conquer: (ppt/pdf)
     presorting, balanced tree algorithms.
Ch. 6  
 
8
10
design/coding exercise
Decrease-and-conquer: (ppt/pdf)
Ch. 5  
 
15
17
     insertion sort, DFS, BFS.
Greedy: (ppt/pdf)
Ch. 9 HW5: due 11/28
 
22
24
     Dijkstra's algorithm, Huffman codes.
THANKSGIVING BREAK - NO CLASS
Ch. 12.1  
HW6: due 12/9
29
Dec 1
Dynamic programming: (ppt/pdf)
     bottom-up, binomial coefficient, caching.
Ch. 8  
 
6
8
Space vs. Time: (ppt/pdf)
     hash tables, course overview.
Ch. 7  
 
13
FINAL EXAM    Tue, 1:00-2:40

Sample code from class



In the event of disruption of normal classroom activities due to a flu outbreak or other emergency, the format for this course may be modified to enable completion of the course. In that event, you will be provided an addendum to this syllabus that will supersede this version.