摘要:
参考维基百科http://en.wikipedia.org/wiki/Maze_generation_algorithm1 深度优先搜索Start at a particular cell and call it the "exit."Mark the current cell as visited, and get a list of its neighbors. For each neighbor, starting with a randomly selected neighbor:If that neighbor hasn't been visited, r 阅读全文
摘要:
Windows下编译Boost并配置CodeBlocks和VisualStudioTable of Contents1 Must Know Before Installation2 编译参数含义 3 根目录下的文件 4 Windows 4.1 首先编译bjam 4.2 利用GCC编译器编译并配置CodeBlocks 4.3 利用MSVC编译器编译并配置Visual Studio 20084.4 命令行下调用5 测试代码 1 Must Know Before InstallationBoost官网Boost是个跨平台的库,完全编译(并不是说包含所有的包而是包含支持各种编译器的完整编译,例如GCC 阅读全文