5. Building Block View¶
5.1 Container Diagram¶
5.2 Component Descriptions¶
Component |
Responsibility |
|---|---|
Input Parser |
Reads lines from stdin, groups them into |
Field Processor |
For each field, replaces each |
Output Formatter |
Prints |
5.3 Data Structure¶
The single shared data structure passed between components:
struct Field {
int rows, cols;
vector<string> grid; // rows x cols, cells are '.' or '*'
};