Difference between revisions of "COMP345 - fall 2015"
From Dr. Joey Paquet Web Site
(Created page with "==Course Description== '''COMP 345 - Advanced Program Design with C++''' (4 credits) Prerequisite: COMP352 previously or concurrently. Introduction to C++. I/O with stream ...") |
(→Course Schedule and Contacts) |
||
Line 20: | Line 20: | ||
! {{tableHeaderCell}} | web site | ! {{tableHeaderCell}} | web site | ||
|- | |- | ||
− | || lecture D || <tt>-T-J---</tt> || <tt>13:15-14:30</tt> || <tt> | + | || lecture D || <tt>-T-J---</tt> || <tt>13:15-14:30</tt> || <tt>H-535</tt> || Paquet, Joey || paquet@encs.concordia.ca || |
|- | |- | ||
− | || lab DI || <tt>--W----</tt> || <tt>20:30-22: | + | || lab DI || <tt>--W----</tt> || <tt>20:30-22:20</tt> || <tt>H-917</tt> || Patel, Parth Pareshkumar || par_pat@encs.concordia.ca || |
|- | |- | ||
− | || lab DJ || <tt>--W----</tt> || <tt>20:30-22: | + | || lab DJ || <tt>--W----</tt> || <tt>20:30-22:20</tt> || <tt>H-831</tt> || Laleh, Touraj || t_laleh@encs.concordia.ca || |
|- | |- | ||
|| office hours D || <tt>---—F--</tt> || <tt>10:00-12:00</tt> || <tt>EV-3-221</tt> || Paquet, Joey || || | || office hours D || <tt>---—F--</tt> || <tt>10:00-12:00</tt> || <tt>EV-3-221</tt> || Paquet, Joey || || | ||
|- | |- | ||
− | || lecture N || <tt>M-W----</tt> || <tt>16:15-17:30</tt> || <tt> | + | || lecture N || <tt>M-W----</tt> || <tt>16:15-17:30</tt> || <tt>H-620</tt> || Sadri, Javad || j_sadri@encs.concordia.ca || |
|- | |- | ||
− | || lab NI || <tt>--W----</tt> || <tt> | + | || lab NI || <tt>--W----</tt> || <tt>17:45-19:35</tt> || <tt>H-967</tt> || TBA || || |
|- | |- | ||
− | || lab NJ || <tt>--W----</tt> || <tt> | + | || lab NJ || <tt>--W----</tt> || <tt>17:45-19:35</tt> || <tt>H-917</tt> || TBA || || |
|- | |- | ||
− | || office hours N || TBA || || || | + | || office hours N || TBA || || || || || |
|} | |} | ||
Revision as of 13:57, 6 September 2015
Contents |
Course Description
COMP 345 - Advanced Program Design with C++ (4 credits)
Prerequisite: COMP352 previously or concurrently. Introduction to C++. I/O with stream classes. Pointers and their uses. TheStandard Template Library (STL): containers, algorithms, iterators, adaptors, function objects. Class design: constructors, destructors, operator overloading, inheritance, virtual functions, exception handling, memory management. Advanced topics: libraries, locales, STL conventions, concurrency, template metaprogramming. Applications of C++: systems, engineering, games programming. Project. Lectures: three hours per week. Laboratory: two hours per week.
Course Schedule and Contacts
component | day | time | location | instructor | e-mail address | web site |
---|---|---|---|---|---|---|
lecture D | -T-J--- | 13:15-14:30 | H-535 | Paquet, Joey | paquet@encs.concordia.ca | |
lab DI | --W---- | 20:30-22:20 | H-917 | Patel, Parth Pareshkumar | par_pat@encs.concordia.ca | |
lab DJ | --W---- | 20:30-22:20 | H-831 | Laleh, Touraj | t_laleh@encs.concordia.ca | |
office hours D | ---—F-- | 10:00-12:00 | EV-3-221 | Paquet, Joey | ||
lecture N | M-W---- | 16:15-17:30 | H-620 | Sadri, Javad | j_sadri@encs.concordia.ca | |
lab NI | --W---- | 17:45-19:35 | H-967 | TBA | ||
lab NJ | --W---- | 17:45-19:35 | H-917 | TBA | ||
office hours N | TBA |
Lecture Schedule
wk | date | event | lecture topics | material |
---|---|---|---|---|
week 1 | sep 1 - sep 5 |
|
||
week 2 | sep 8 - sep 12 |
|
|
|
week 3 | sep 15 - sep 19 |
|
||
week 4 | sep 22 - sep 26 | |||
week 5 | sep 29 - oct 3 |
|
||
week 6 | oct 6 - oct 10 |
|
||
week 7 | oct 13 - oct 17 |
|
||
week 8 | oct 20 - oct 24 |
|
|
|
week 9 | oct 27 - oct 31 |
|
|
|
week 10 | nov 3 - nov 7 |
|
|
|
week 11 | nov 10 - nov 14 |
|
||
week 12 | nov 17 - nov 21 |
|
|
|
week 13 | nov 24 - nov 28 |
|
||
exam week | dec 3 - dec 18 |
|
Course Material and Resources
- Course outline
- COMP345 section D fall 2014 teams
- ENCS Electronic Student Submission System
- Source code of all program examples in Walter Savitch's "Absolute C++"
- Source code of all program examples in Daniel Liang's "Introduction to Programming with C++"
Code used in the lecture slides
- MFC serialization
- Abstract classes
- Polymorphism
- Observer pattern
- Design patterns
- Virtual Inheritance
- Private Inheritance
- Operator Overloading
- Exception Handling
- Templates
- design patterns implemented in C++ (1)
- design patterns implemented in C++ (2)