⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 13vi.h

📁 《C/C++程序设计导论(第二版)》一书的程序源文件
💻 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 + -