예제 #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);
}