コード例 #1
0
ファイル: assign3.cpp プロジェクト: stellalie/dsa
Row* Maze::rowAt(int y) const
{
    Row row(y);
    return rows.find(row);
}
コード例 #2
0
ファイル: assign3.cpp プロジェクト: stellalie/dsa
Cell* Row::cellAt(int x) const 
{
    Cell cell(x);
    return cells.find(cell);
}