Difference between revisions of "COMP345 - fall 2015"
From Dr. Joey Paquet Web Site
(→Course Material and Resources) |
(→Course Schedule and Contacts) |
||
Line 30: | Line 30: | ||
|| lecture N || <tt>M-W----</tt> || <tt>16:15-17:30</tt> || <tt>H-620</tt> || Sadri, Javad || j_sadri@encs.concordia.ca || | || 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>17:45-19:35</tt> || <tt>H-967</tt> || | + | || lab NI || <tt>--W----</tt> || <tt>17:45-19:35</tt> || <tt>H-967</tt> || Palani, Dharani Kumar || d_palan@encs.concordia.ca || |
|- | |- | ||
− | || lab NJ || <tt>--W----</tt> || <tt>17:45-19:35</tt> || <tt>H-917</tt> || | + | || lab NJ || <tt>--W----</tt> || <tt>17:45-19:35</tt> || <tt>H-917</tt> || Rabah, Sleiman || rsleiman2@gmail.com || |
− | + | ||
− | || office hours N || | + | || office hours N || <tt>M-W----</tt> || <tt>15:00-16:00</tt> || <tt>EV-3-233</tt> || Sadri, Javad || || [[http://users.encs.concordia.ca/~c345_2/|web page]] |
|} | |} | ||
Revision as of 11:00, 8 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 | Palani, Dharani Kumar | d_palan@encs.concordia.ca | ||||||||
lab NJ | --W---- | 17:45-19:35 | H-917 | Rabah, Sleiman | rsleiman2@gmail.com | office hours N | M-W---- | 15:00-16:00 | EV-3-233 | Sadri, Javad | [page] |
Lecture Schedule
wk | date | event | lecture topics | material |
---|---|---|---|---|
week 1 | sep 7 - sep 11 |
|
||
week 2 | sep 14 - sep 18 |
|
|
|
week 3 | sep 21 - sep 25 |
|
||
week 4 | sep 28 - oct 2 | |||
week 5 | oct 5 - oct 9 |
|
||
week 6 | oct 12 - oct 16 |
|
||
week 7 | oct 19 - oct 23 |
|
||
week 8 | oct 26 - oct 30 |
|
|
|
week 9 | nov 2 - nov 6 |
|
|
|
week 10 | nov 9 - nov 13 |
|
|
|
week 11 | nov 16 - nov 20 |
|
||
week 12 | nov 23 - nov 27 |
|
|
|
week 13 | nov 30 - dec 4 |
|
||
exam week | dec 9 - dec 22 |
|
Course Material and Resources
- Course outline
- COMP345 section D fall 2015 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)