13vi.h

来自「C/C++程序设计导论(第二版)》程序源文件」· C头文件 代码 · 共 12 行

H
12
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?