Course focuses on object-oriented programming in C++. Follows APS105 — Computer Fundamentals in C. Followed by ECE297 — Software Design and Communication and ECE345 — Algorithms and Data Structures.
We used the Problem Solving with C++ book by Walter Savitch. The textbook (IMO) is fairly useless outside of a passing reference. Prof Emara also wrote a book with exercise problems.
Concepts covered
Content that is more or less the same as APS105 is omitted here.
- Unix
- Command line
- Reference
- Code organisation (C) and compilation
- Header file
- Make (not testable)
- Preprocessor (
#include,#ifndef,#define) - Stream
- Standard IO (
<iostream>) - File IO
- Stringstream (
<sstream>)
- Standard IO (
- Buffer
- Heap allocation
- Object-oriented programming
- Access modifier (
public,private) - Encapsulation
- Inheritance
- Access modifier (
- Method
- Qualifiers and specifiers
- const
- Storage-class specifier (
static)
- Data structure
- Recursion, recurrences
- Algorithm
- Time complexity
Submission
To compile a C++ file, we can execute:
g++ -std=c++11 -g –Wall hello.cpp –o hello./hello
Or alternatively execute make.
We can:
- Check against test cases with:
~ece244i/public/exercise 3 parser. - Submit with:
~ece244i/public/submit 3after copying all files into one directory.