ceng 213 data structures

6
CENG 213 Data Structures Department of Computer Engineering Middle East Technical University Fall 2014 CENG 213 Data Structures 1

Upload: virginia-irwin

Post on 31-Dec-2015

74 views

Category:

Documents


0 download

DESCRIPTION

CENG 213 Data Structures. Department of Computer Engineering Middle East Technical University Fall 2014. CENG 213 Data Structures. 1. CENG 213 Section 1. Instructor: Pınar KARAGÖZ A404 [email protected] Lecture Hours: Section 1: Mon. 13:40, 14:40 (BMB1); Thurs. 09:40 (BMB1) - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: CENG 213  Data Structures

CENG 213 Data Structures

Department of Computer EngineeringMiddle East Technical University

Fall 2014

CENG 213 Data Structures 1

Page 2: CENG 213  Data Structures

CENG 213 Section 1Instructor: Pınar KARAGÖZ• A404• [email protected]

Lecture Hours: • Section 1: Mon. 13:40, 14:40 (BMB1); Thurs. 09:40 (BMB1)

Course Web Page: http://cow.ceng.metu.edu.tr/

Teaching Assistants: • Özcan Dülger, • Fatih Semiz , • Dilek Önal, • Batuhan Karagöz

CENG 213 Data Structures 2

Page 3: CENG 213  Data Structures

Course Description

Course Objectives: To introduce abstract concepts for data organization and manipulation, to show how these concepts are useful in problem solving.

Learning Outcomes: At the end of the course unit, the student is expected to be able to use appropriate data structures for the solution of the problem at hand. The student should be able to design and implement abstract data types which use efficient algorithms to manipulate these structures.

Prerequisite: CENG 140Text BookMark Allen Weiss, Data Structures and Algorithm Analysis in C++ (3rd ed.),

Addison Wesley, 2006.

CENG 213 Data Structures 3

Page 4: CENG 213  Data Structures

Grading

• Midterm I 20% November 13, 2014 • Midterm II 20% December 18, 2014• Final 30%• Quiz and

Assignments 30% (1 quiz and 3 prog. homeworks)

CENG 213 Data Structures 4

Page 5: CENG 213  Data Structures

Policies• Policy on missed exam:

o make-up exam in case of formal excuse (submitted BEFORE exam)

• Lateness policy:o On the total 7 days for late submissiono You can can use at most 3 days per homework

• A student can take the final exam if and only if s/he has at least 50% attendance and gets at least 30% points as the average first two assignments.

• All assignments and programs are to be your own work. No group projects or assignments are allowed.

CENG 213 Data Structures 5

Page 6: CENG 213  Data Structures

Course Outline

• Overview of object-oriented programming with C++ [chapter 1]

• Algorithm analysis [chapter 2] • Sorting [chapter 7] • Lists, stacks, queues [chapter 3]• Trees [chapter 4] • Hashing [chapter 5] • Priority queues [chapter 6]• Graphs [chapter 9]

CENG 213 Data Structures 6