Difference between revisions of "COMP345 - fall 2018"

From Dr. Joey Paquet Web Site
Jump to: navigation, search
(Course Schedule and Contacts)
(Lecture Schedule)
 
(20 intermediate revisions by one user not shown)
Line 36: Line 36:
 
|| lab GX                        || <tt>--W----</tt> || <tt>17:45-19:35</tt> || <tt>H917</tt>        || Basant Singh                  || <tt>s_basant@encs.concordia.ca</tt> ||
 
|| lab GX                        || <tt>--W----</tt> || <tt>17:45-19:35</tt> || <tt>H917</tt>        || Basant Singh                  || <tt>s_basant@encs.concordia.ca</tt> ||
 
|-
 
|-
|| marker                        ||                  ||                      ||                      || Sleiman Rabah                || <tt>s_rabah@encs.concordia.ca</tt>  ||
+
|| marker                        ||                  ||                      ||                      || Sleiman Rabah                || <tt>s_rabah@encs.concordia.ca</tt>  || [https://users.encs.concordia.ca/~s_rabah/ta/courses/comp345.php]
 
|-
 
|-
 
|| marker                        ||                  ||                      ||                      || Haotao Lai                    || <tt>h_lai@encs.concordia.ca</tt>    ||
 
|| marker                        ||                  ||                      ||                      || Haotao Lai                    || <tt>h_lai@encs.concordia.ca</tt>    ||
Line 135: Line 135:
 
|| oct 23, oct 25
 
|| oct 23, oct 25
 
||
 
||
*midterm examination <br> oct 27, 13h00-15h00 rooms H507,H553
+
*midterm examination <br> oct 27, 13h00-15h00 <br>room H507: SID 25900000-40017000<br>room H553: SID 40017001-40099999<br>[[COMP345 Fall 2018 Midterm coverage|coverage]] <br> [[Media:grades.midterm.COMP345.paquet.2018.pdf|results]]
 
||
 
||
 
*polymorphism
 
*polymorphism
Line 177: Line 177:
 
|| nov 13, nov 15
 
|| nov 13, nov 15
 
||
 
||
*due date for assignment 3 (nov 16)
+
*due date for assignment 3 (nov 18)
 
*[[Media:assignment4.COMP345.2018.2.pdf|assignment 4 handout]]
 
*[[Media:assignment4.COMP345.2018.2.pdf|assignment 4 handout]]
 
||
 
||
Line 200: Line 200:
 
||
 
||
 
*due date for assignment 4 (nov 30)
 
*due date for assignment 4 (nov 30)
*[dec 1 or 2] final programming test
+
*final programming test<br>Sunday, dec 2, 2-4pm<br> H929 (SID: 25900000 to 40018000) <br> H967 (SID: 40018001 to 40099999) <br> H915 (ACSD students)<br>[[Media:grades.COMP345.programmingexam.paquet.2018.2.pdf|results]]
 
||
 
||
 
* Review
 
* Review
Line 210: Line 210:
 
|| dec 5 - dec 19
 
|| dec 5 - dec 19
 
||
 
||
*final written examination (confirmed) <br> dec 10 9h00-12h00 rooms H501,H521,H523,H540
+
*final written examination (confirmed) <br> dec 10 9h00-11h00 rooms H501,H521,H523,H540 <br> [[Media:grades.final.COMP345.paquet.2018.2.pdf|results]]
 
||
 
||
 
||
 
||

Latest revision as of 13:00, 2 September 2019

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-553 Paquet, Joey paquet@encs.concordia.ca
instructor's office hours --W---- 10:00-12:00 EV-3-221 Paquet, Joey
lab AX --W---- 20:30-22:20 H831 Claudia Della Serra cl_della@encs.concordia.ca
lab BX --W---- 20:30-22:20 H929 Haotao Lai h_lai@encs.concordia.ca
lab CX --W---- 20:30-22:20 H917 Vahid Khorasani Ghassab v_khoras@encs.concordia.ca
lab EX --W---- 17:45-19:35 H907 Vahid Khorasani Ghassab v_khoras@encs.concordia.ca
lab FX --W---- 18:20-20:20 H929 Sleiman Rabah s_rabah@encs.concordia.ca
lab GX --W---- 17:45-19:35 H917 Basant Singh s_basant@encs.concordia.ca
marker Sleiman Rabah s_rabah@encs.concordia.ca [1]
marker Haotao Lai h_lai@encs.concordia.ca

Lecture Schedule

wk date event topics lecture material (tentative) laboratory material (tentative)
week 1 sep 4, sep 6
  • introduction to the course and project
  • introduction to C++
week 2 sep 11, sep 13
  • program organization
  • compilation units, namespaces
  • data types, type coercion
  • streams
  • pointers
week 3 sep 18, sep 20
  • structures, classes
  • inheritance
  • constructors, destructors
  • const, inline, static
  • friends
week 4 sep 25, sep 27
week 5 oct 2, oct 4
  • C/C++ arrays and dynamic arrays, containers
week 6 oct 9, oct 11
  • due date for assignment 1 (oct 12)
  • MVC architecture
  • observer pattern
week 7 oct 16, oct 18
week 8 oct 23, oct 25
  • midterm examination
    oct 27, 13h00-15h00
    room H507: SID 25900000-40017000
    room H553: SID 40017001-40099999
    coverage
    results
  • polymorphism
  • virtual functions
  • abstract classes
  • slicing problem, value and reference semantics
  • virtual function tables
  • diamond problem, virtual inheritance
week 9 oct 30, nov 1
  • design patterns in C++
week 10 nov 6, nov 8
  • operator overloading
week 11 nov 13, nov 15
  • exception handling
week 12 nov 20, nov 22
  • templates metaprogramming
week 13 nov 27 - nov 29
  • due date for assignment 4 (nov 30)
  • final programming test
    Sunday, dec 2, 2-4pm
    H929 (SID: 25900000 to 40018000)
    H967 (SID: 40018001 to 40099999)
    H915 (ACSD students)
    results
  • Review
exam week dec 5 - dec 19
  • final written examination (confirmed)
    dec 10 9h00-11h00 rooms H501,H521,H523,H540
    results

Course Material and Resources

Code used in the lecture slides