mirror of
https://gitee.com/yyz_o/bk_bishe_pi.git
synced 2025-09-07 23:21:26 +00:00
2025.5.14第二次提交,修改完成全部编译时的报错,除部分警告之外。
This commit is contained in:
@@ -25,7 +25,7 @@ void flood(int *map, int *copy_map, int *copy_wall); //洪水填充算法
|
||||
|
||||
/*---PART4---*/
|
||||
/*---以下为路径算法部分涉及到的函数声明---*/
|
||||
void build_path(int i, int j, int len, int *path, int *copy_wall); //路径算法
|
||||
void build_path(int i, int j, int len, int *path, int *map, int *copy_wall); //路径算法
|
||||
void drive_path(int len, int *path); //移动到目的地
|
||||
/*---以上为路径算法部分涉及到的函数声明---*/
|
||||
|
||||
@@ -38,8 +38,8 @@ void array_copy_wall(int size_x, int size_y, int *copy_wall); //复制一份wa
|
||||
|
||||
/*---PART6---*/
|
||||
/*---以下为数组打印部分涉及到的函数声明---*/
|
||||
void output_arr2D(int *arr); //打印所有二维数组数组
|
||||
void output_arrwall(int *arr); //打印wall数组
|
||||
void output_arr2D(int size_x, int size_y, int *arr); //打印所有二维数组数组
|
||||
void output_arrwall(int size_x, int size_y, int *arr); //打印wall数组
|
||||
void output_arrpath(int *arr); //打印path数组
|
||||
/*---以上为数组打印部分涉及到的函数声明---*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user