IM 1003, Fall 2017

Programming Design

Instructor: Ling-Chieh Kung

Department of Information Management

National Taiwan University


Go

About this Course

In this course, we will introduce how to write computer programs for general purposes. The programming language we will study is C++, one of the most popular and powerful high-level programming language nowadays. In this semester, we will focus on the procedural programming part of C++, which is quite similar to the programming language C. The introduction of those object-oriented features of C++ will be in the next semester. While we will spend a lot of time on how to write "correct" programs, we will also try to write "good" programs, i.e., those run faster, using less memory, having better formats, generating friendly user interfaces, being more extendable, etc. The language C++ is just something that facilitates the delivery of the principles of computer programming. What really matter are the conceptual principles, not the C++ syntax or rules. Our objective is not to teach you how to write C++ programs; we want to make you be able to teach yourself any other programming languages. C++ is chosen to be taught in this course mainly because, in my opinion, it is a "broad" language. This will be discussed in lectures.

This is a required course for first-year undergraduate students in the Department of Information Management in National Taiwan University. We do not assume any background in computer programming, and there is no prerequisite for this course. All students who want to enroll in or audit this course are welcome.If there are too many students who want to enroll in this course, the instructor will announce the selection process in the first lecture.

Note. Though this course counts for three units officially, students are suggested to treat it as at least five units and put efforts accordingly. In my opinion, this course should be (and indeed is) heavier than most introductory programming courses in NTU. If you do not have any programming experience, you do need to spend enough time on programming to really learn something. Studying programming is definitely not easy. Please do not hesitate to let me know if you need any help.

Basic information

Instructor
  • Ling-Chieh Kung (孔令傑)
  • E-mail: lckung(AT)ntu.edu.tw
  • Office: Room 413, Management Building II
  • Tel: 02-3366-1176.
  • Office hour: by appointments.
Teaching Assistants
  • 林敬傑: r05725007(AT)ntu.edu.tw
  • 楊佩蓉: r05725028(AT)ntu.edu.tw
  • 林翰伸: r06725040(AT)ntu.edu.tw
  • 楊其恆: b03705048(AT)ntu.edu.tw
Meetings
  • Lectures: 2:20-5:20 pm, Tuesday. Room B01, Management Building 1.
  • Labs: 6:25-9:05 pm, Wednesday. The large computer classroom, Management Building 1.
Textbook
  • C++ How to Program: Late Objects Version by Deitel and Deitel, seventh edition, Pearson Education.
    臺灣代理: 歐亞圖書, (02) 8912-1188..
References
  • A First Book of C++ by Bronson.
  • C++ Primer by Lippman, Lajoie, and Moo.
  • The C++ Programming Language by Stroustrup.
On-line resources
  • To check grades: CEIBA.
  • To download materials: This website.
  • To submit homework: PDOGS.
  • To discuss: Piazza.

Syllabus

For a detailed description about this course, including course policies, grading rules, tentative schedules, etc., please see the syllabus. Whenever there is an update, a new version will be posted with a short note describing the update.

Post Syllabus Notes
2017/9/12 Link The initial plan
2017/10/3 Link Modifying the schedule

Lecture materials

Week Topic Lecture Slides Lecture Programs Videos
1 Introduction Slides Programs Playlist
2 Selection and Repetition Slides Programs Playlist
3 Digital Systems Slides N/A N/A
4 Variables and Arrays Slides Programs Playlist
5 (No class: national holiday) N/A N/A N/A
6 Midterm 1 N/A N/A N/A
7 Functions Slides Programs Playlist
8 Algorithms and Recursion Slides Programs Playlist
9 Complexity and Graphs Slides N/A
10 Pointers Slides Programs Playlist
11 Midterm Exam 2 N/A N/A N/A
12 C Strings Slides Programs Playlist
13 Self-defined Data Types in C Slides Programs Playlist
14 Classes Slides Programs Playlist
15 Advanced Topics Slides N/A N/A
16 (Final Exam) N/A N/A N/A

Related materials

Homework

Exam

Exam Problems Solutions TAs' Notes
Midterm 1 Problems
Midterm 2 Problems
Final Exam Problems

Projects

Item Description
Midterm Project Midterm project problem description
Final Project Final project problem description