Announcements

  1. (Feb 2) Course page is online.
  2. (Feb 25) Homework assignment 1 is available.
  3. (Mar 10) Homework assignment 2 is available.
  4. (Apr 6) Homework assignment 3 is available.
  5. (Apr 29) Homework assignment 4 is available.

Course Description

The course picks up from where CS 201 left by discussing concepts related to algorithmic efficiency on basic abstract data types and some sorting algorithms that utilize recursion. Then, the course introduces the abstract data types of trees, tables, priority queues, and graphs, and shows how one can implement them in C++ using fundamental data structures by emphasizing run-time complexity analysis.

Section 1

Instructor: Buğra Gedik (Office: EA 501, Email: bgedik[at]cs.bilkent.edu.tr)
Lectures: Mon 10:40-12:30 (B 206), Thu 8:40-10:30 (B 206)

Section 2

Instructor: Uğur Doğrusöz (Office: EA 522, Email: )
Lectures: Mon 8:40-10:30 (B Z05), Wed 10:40-12:30 (B Z05)

Section 3

Instructor: Selim Aksoy (Office: EA 422, Email: )
Lectures: Tue 8:40-10:30 (B Z08), Thu 10:40-12:30 (B Z08)

Teaching Assistants

Graders

Office Hours

Texts

  1. Frank M. Carrano and Timothy Henry, Data Abstraction and Problem Solving with C++: Walls and Mirrors, 6th edition, Pearson, 2013. (textbook)
  2. Frank M. Carrano, Data Abstraction and Problem Solving with C++: Walls and Mirrors, 5th edition, Addison-Wesley, 2006. (old version)
  3. Mark A. Weiss, Data Structures & Algorithm Analysis in C++, 3rd edition, Addison Wesley, 2006. (recommended)
  4. Harvey M. Deitel and Paul J. Deitel, C++ How to Program, 8th edition, Prentice Hall, 2011. (recommended)

Lectures

Topics

Contents

Algorithm Analysis

[ Slides ]

  • Measuring the Efficiency of Algorithms (Ch. 10 of Carrano-Henry)
  • 1 week

Sorting

[ Slides ]

  • Sorting Algorithms and Their Efficiency (Ch. 11 of Carrano-Henry)
  • Sorting animation
  • 2 weeks

Trees

[ Slides ]

  • Binary Search Trees (Ch. 15, 16 of Carrano-Henry)
  • 2 weeks

Heaps

[ Slides ]

  • Heaps (Ch. 17 of Carrano-Henry)
  • 2 weeks

Balanced Search Trees

[ Slides: Part 1 | Part 2 ]

  • AVL, 2-3, 2-3-4, Red-Black Trees (Ch. 19 of Carrano-Henry)
  • 3 weeks

Hashing

[ Slides ]

  • Hashing (Ch. 18 of Carrano-Henry)
  • 1 week

Graphs

[ Slides ]

  • Graphs (Ch. 20 of Carrano-Henry)
  • 3 weeks

Exams

Homework

Please make sure that you are aware of the homework grading policy that is explained in the rubric for homeworks.

  1. Assignment 1: Due 23:55 on March 9, 2019
  2. Assignment 2: Due 23:55 on March 23, 2019
  3. Assignment 3: Due 23:55 on April 20, 2019
  4. Assignment 4 (dataset and codes): Due 23:55 on May 18, 2019

Homework assignments will be posted on this page about 10 days before their due date. Assignments are expected to be turned in by 23:55 on the due date. You should upload your solutions to the homework assignments using Moodle before the deadline. Please contact the instructors or the TAs for the late submission policy.

Please make sure you fully understand the Bilkent University Policy on Academic Honesty (in Turkish) and the Rules and Regulations of the Higher Education Council (YOK) (in Turkish). Cheating and plagiarism on exams, quizzes, and homework assignments will be punished according to these regulations.

Grading Policy

Quiz:9%
Homework:16%
Midterm exam 1:25%
Midterm exam 2:25%
Final exam:25%

In order to be able to take the final exam, a student must

Otherwise, the student will receive the FZ grade.

Advice

When you are in doubt, ask. Use office hours. If you cannot visit us during office hours, you can always ask questions or arrange meetings by e-mail. Study regularly for the course and attend classes. Do your assignments on time and pay attention to the instructions for submitting assignments. Always make sure that the code you submitted does compile and run correctly.

Related Links