📄 13vi.h
字号:
// Maze.h Header file for the Maze class
class Maze
{ public: void Input (istream& in); // read in the maze
void Solve (int x, int y); // solve the maze
private: char cells[10][10];
int Recursive_Solve (int x, int y);
};
// wrapper function for the extraction operator
istream& operator >> (istream& in, Maze& m);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -