Difference between revisions of "COMP345 - fall 2014"

From Dr. Joey Paquet Web Site
Jump to: navigation, search
(Course Material and Resources)
(Lecture Schedule)
Line 52: Line 52:
 
||  
 
||  
 
*introduction to the course and project
 
*introduction to the course and project
 +
*introduction to C++
 
||
 
||
 
*[[Media:COMP345.0.introduction.ppt|Slide set 0]]
 
*[[Media:COMP345.0.introduction.ppt|Slide set 0]]
Line 60: Line 61:
 
*[sep 12] group formation deadline
 
*[sep 12] group formation deadline
 
||
 
||
*C++ basics
 
*separate compilation, namespaces
 
 
*program organization
 
*program organization
 +
*separate compilation, namespaces
 +
*data types, type coercion
 +
*pointers
 
||
 
||
 
*[[Media:COMP345.1.programstructure.ppt|Slide set 1]]
 
*[[Media:COMP345.1.programstructure.ppt|Slide set 1]]
Line 72: Line 74:
 
||
 
||
 
||
 
||
*ch6: structures, classes
+
*structures, classes
*ch14: inheritance
+
*inheritance
*ch7: constructors, const, inline, static
+
*constructors, const, inline, static
 
||
 
||
 
*[[Media:COMP345.2.classes.ppt|Slide set 2]]
 
*[[Media:COMP345.2.classes.ppt|Slide set 2]]
Line 92: Line 94:
 
||
 
||
 
||
 
||
*ch5: arrays
+
*arrays, dynamic arrays
*ch10: dynamic arrays, pointers
+
*STL containers, iterators
*ch7,19: vectors, iterators
+
 
||
 
||
 
*[[Media:COMP345.3.arrays.ppt|Slide set 3]]
 
*[[Media:COMP345.3.arrays.ppt|Slide set 3]]
Line 106: Line 107:
 
||
 
||
 
||
 
||
*GUI design in C++ (MVC and Observer Patterns)
+
*MVC architecture
 +
*observer pattern
 
||
 
||
 
*[[Media:COMP345.5.MVC-Observer.ppt|MVC and the Observer Pattern in C++]]
 
*[[Media:COMP345.5.MVC-Observer.ppt|MVC and the Observer Pattern in C++]]
Line 133: Line 135:
 
*[oct 26] Deadline for withdrawal
 
*[oct 26] Deadline for withdrawal
 
||
 
||
*ch15: polymorphism, virtual functions
+
*polymorphism, virtual functions
 
||
 
||
 
*[[Media:COMP345.6.virtuals.ppt|Slide set 6]]
 
*[[Media:COMP345.6.virtuals.ppt|Slide set 6]]
Line 156: Line 158:
 
*[nov 5-6] [[intermediate project delivery COMP345 Fall 2013|intermediate project delivery due]]  
 
*[nov 5-6] [[intermediate project delivery COMP345 Fall 2013|intermediate project delivery due]]  
 
||
 
||
*ch8: operator overloading
+
*operator overloading
 
||
 
||
 
*[[Media:COMP345.8.operators.ppt|Slide set 8]]
 
*[[Media:COMP345.8.operators.ppt|Slide set 8]]
Line 166: Line 168:
 
*[[Media:Gradingfinalproject.COMP345.paquet.2013.2.pdf|final project build grading sheet handout]]
 
*[[Media:Gradingfinalproject.COMP345.paquet.2013.2.pdf|final project build grading sheet handout]]
 
||
 
||
*ch18:exception handling
+
*exception handling
 
||
 
||
 
*[[Media:COMP345.9.exceptions.ppt|Slide set 9]]
 
*[[Media:COMP345.9.exceptions.ppt|Slide set 9]]
Line 176: Line 178:
 
*[nov 21] individual programming assignment #3 due
 
*[nov 21] individual programming assignment #3 due
 
||
 
||
*ch16:templates
+
*templates metaprogramming
 
||
 
||
 
*[[Media:COMP345.10.templates.ppt|Slide set 10]]
 
*[[Media:COMP345.10.templates.ppt|Slide set 10]]

Revision as of 23:02, 27 August 2014

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 FG B070 Paquet, J. paquet@cse.concordia.ca
lab DI --W---- 20:30-22:00 TBA TBA
lab DJ --W---- 20:30-22:00 TBA TBA
office hours D --W-—-- 11:00-13:00 EV-3-221 Paquet, J.
lecture N M-W---- 16:15-17:30 FG B070 Sinnig, D d_sinnig@encs.concordia.ca
lab NI --W---- 18:00-21:00 TBA TBA
lab NJ --W---- 18:00-21:00 H-821 TBA
office hours N TBA Sinnig, D

Lecture Schedule

wk date event lecture topics (TENTATIVE) material (TENTATIVE)
week 1 sep 1 - sep 5
  • introduction to the course and project
  • introduction to C++
week 2 sep 8 - sep 12
  • [sep 12] group formation deadline
  • program organization
  • separate compilation, namespaces
  • data types, type coercion
  • pointers
week 3 sep 15 - sep 19
  • structures, classes
  • inheritance
  • constructors, const, inline, static
week 4 sep 22 - sep 26
week 5 sep 29 - oct 3
  • arrays, dynamic arrays
  • STL containers, iterators
week 6 oct 6 - oct 10
  • MVC architecture
  • observer pattern
week 7 oct 13 - oct 17
week 8 oct 20 - oct 24
  • [oct 26] Deadline for withdrawal
  • polymorphism, virtual functions
week 9 oct 27 - oct 31
  • design patterns in C++
week 10 nov 3 - nov 7
  • operator overloading
week 11 nov 10 - nov 14
  • exception handling
week 12 nov 17 - nov 21
  • [nov 21] individual programming assignment #3 due
  • templates metaprogramming
week 13 nov 24 - nov 28
exam week dec 3 - dec 18
  • final examination : TBA

Course Material and Resources