This commit is contained in:
氧原子
2025-04-25 14:33:54 +08:00
parent 5f0d0c5437
commit 6c7fde5740
10 changed files with 582 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#include<iostream>
#include"maze_func.h"
#include"maze_parameter.h"
using namespace std;
/*---下面是主函数---*/
int main()
{
explore();
output();
}