Difference between revisions of "COMP345 - fall 2017"

From Dr. Joey Paquet Web Site
Jump to: navigation, search
(Course Schedule and Contacts)
(Lecture Schedule)
 
(31 intermediate revisions by one user not shown)
Line 20: Line 20:
 
! {{tableHeaderCell}} | web
 
! {{tableHeaderCell}} | web
 
|-
 
|-
|| lecture D          || <tt>-T-J---</tt> || <tt>13:15-14:30</tt> || <tt>H-520</tt>        || Paquet, Joey                  || paquet@encs.concordia.ca   ||
+
|| lecture D          || <tt>-T-J---</tt> || <tt>13:15-14:30</tt> || <tt>H-520</tt>        || Paquet, Joey                  || paquet@encs.concordia.ca         ||
 
|-
 
|-
|| office hours D    || <tt>--T-----</tt> || <tt>10:00-12:00</tt> || <tt>EV-3-221</tt>    || Paquet, Joey                  ||                           ||
+
|| office hours D    || <tt>-T-----</tt> || <tt>10:00-12:00</tt> || <tt>EV-3-221</tt>    || Paquet, Joey                  ||                                 ||
 +
|-
 +
|| lab E-X            || <tt>--W----</tt> || <tt>17:45 19:35</tt> || <tt>H-903</tt>        || Lai, Haotao                  || h_lai@encs.concordia.ca          ||
 +
|-
 +
|| lab G-X            || <tt>--W----</tt> || <tt>17:45 19:35</tt> || <tt>H-843</tt>        || Gupta, Jyotsana              || jyotsana.gupta@mail.concordia.ca ||
 +
|-
 +
|| lab B-X            || <tt>--W----</tt> || <tt>20:30 22:20</tt> || <tt>H-929</tt>        ||                              ||                                  ||
 
|}
 
|}
  
Line 81: Line 87:
 
|| sep 26, sep 28
 
|| sep 26, sep 28
 
||
 
||
*due data for assignment 1
+
*[sep 28] due date for assignment 1
 +
*[sep 29] assignment presentations
 +
*[[Media:assignment2.COMP345.2017.2.pdf|assignment 2 handout]]
 
||
 
||
 
||
 
||
Line 110: Line 118:
 
|| oct 17, oct 19
 
|| oct 17, oct 19
 
||
 
||
*[oct 19] midterm examination (to be confirmed)
+
*[oct 19] midterm examination
 
||
 
||
 
||
 
||
Line 118: Line 126:
 
|| oct 24, oct 26
 
|| oct 24, oct 26
 
||  
 
||  
 +
*[oct 26] due date for assignment 2
 +
*[[Media:assignment3.COMP345.2017.2.pdf|assignment 3 handout]]
 
||
 
||
 
*polymorphism
 
*polymorphism
Line 146: Line 156:
 
|| week 10
 
|| week 10
 
|| nov 7, nov 9
 
|| nov 7, nov 9
||
+
||
 +
*[nov 9] due date for assignment 3
 +
*[[Media:assignment4.COMP345.2017.2.pdf|assignment 4 handout]]
 
||
 
||
 
*operator overloading
 
*operator overloading
Line 167: Line 179:
 
|| nov 21, nov 23
 
|| nov 21, nov 23
 
||
 
||
 +
*[nov 23] due date for assignment 4
 
||
 
||
 
*templates metaprogramming
 
*templates metaprogramming
Line 175: Line 188:
 
|-
 
|-
 
|| week 13
 
|| week 13
|| nov 28, nov 30
+
|| nov 26 - dec 1
 
||
 
||
* programming test (to be confirmed)
 
||
 
 
||
 
||
 +
* Review
 +
||
 +
*[[Media:COMP345.12.review.ppt|Slide set 12]]
 
||
 
||
 
|-
 
|-
Line 185: Line 199:
 
|| dec 6 - dec 20
 
|| dec 6 - dec 20
 
||
 
||
*final examination : no official final examination
+
* programming test: Tuesday, Dec.19 from 9:00am to 12:00pm
 +
* H929 + H967
 
||
 
||
 
||
 
||
Line 195: Line 210:
 
*[[Media:Syllabus.COMP345.paquet.2017.2.pdf ‎|Course outline]]
 
*[[Media:Syllabus.COMP345.paquet.2017.2.pdf ‎|Course outline]]
 
*[[COMP345 Fall 2017 teams|teams]]
 
*[[COMP345 Fall 2017 teams|teams]]
 +
*[https://fis.encs.concordia.ca/eas/ ENCS Electronic Student Submission System]
 
*[[Media:SourceCode4e.zip|Source code of all program examples in Walter Savitch's "Absolute C++"]]
 
*[[Media:SourceCode4e.zip|Source code of all program examples in Walter Savitch's "Absolute C++"]]
 
*[[Media:Liang_Code.zip|Source code of all program examples in Daniel Liang's "Introduction to Programming with C++"]]
 
*[[Media:Liang_Code.zip|Source code of all program examples in Daniel Liang's "Introduction to Programming with C++"]]

Latest revision as of 09:37, 15 September 2020

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
lecture D -T-J--- 13:15-14:30 H-520 Paquet, Joey paquet@encs.concordia.ca
office hours D -T----- 10:00-12:00 EV-3-221 Paquet, Joey
lab E-X --W---- 17:45 19:35 H-903 Lai, Haotao h_lai@encs.concordia.ca
lab G-X --W---- 17:45 19:35 H-843 Gupta, Jyotsana jyotsana.gupta@mail.concordia.ca
lab B-X --W---- 20:30 22:20 H-929

Lecture Schedule

wk date event topics lecture material (tentative) laboratory material (tentative)
week 1 sep 5, sep 7
  • introduction to the course and project
  • introduction to C++
week 2 sep 12, sep 14
  • program organization
  • compilation units, namespaces
  • data types, type coercion
  • streams
  • pointers
week 3 sep 19, sep 21
  • structures, classes
  • inheritance
  • constructors, destructors
  • const, inline, static
  • friends
week 4 sep 26, sep 28
week 5 oct 3, oct 5
  • arrays, dynamic arrays
week 6 oct 10, oct 12
  • MVC architecture
  • observer pattern
week 7 oct 17, oct 19
  • [oct 19] midterm examination
week 8 oct 24, oct 26
  • polymorphism
  • virtual functions
  • abstract classes
  • slicing problem, value and reference semantics
  • virtual function tables
  • diamond problem, virtual inheritance
week 9 oct 31, nov 2
  • [nov 6] Deadline for withdrawal
  • design patterns in C++
week 10 nov 7, nov 9
  • operator overloading
week 11 nov 14, nov 16
  • exception handling
week 12 nov 21, nov 23
  • [nov 23] due date for assignment 4
  • templates metaprogramming
week 13 nov 26 - dec 1
  • Review
exam week dec 6 - dec 20
  • programming test: Tuesday, Dec.19 from 9:00am to 12:00pm
  • H929 + H967

Course Material and Resources

Code used in the lecture slides