示例#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);
}