Minesweeper -题解(C++代码) 摘要:**思路:**简单地说就是给你一个地图,让你找‘.’存在四周(八个方向)有多少个地雷(‘*’)。 ```cpp #include using namespace std; const int …… 题解列表 2020年01月24日 0 点赞 0 评论 362 浏览 评分:0.0
Minesweeper -题解(C++代码) 摘要:#思路 用两个数组分别表示输入的地图和要输出的结果;将数据存储到地图中,然后对地图中的每一个数据进行判定,添加到结果数组当中。最后进行输出。 ```cpp #include using na…… 题解列表 2020年02月02日 0 点赞 0 评论 316 浏览 评分:0.0
Minesweeper -题解(C语言代码) 摘要:```c #include #include char a[105][105]; int number(int x,int y,int xe,int ye) { int sum=0; …… 题解列表 2020年02月08日 0 点赞 0 评论 333 浏览 评分:0.0
Minesweeper -题解(C语言描述(超简便偶)) 摘要:##思路: 这题我采用的是轰炸法,联系日常,我们常常玩的排雷游戏,雷一定比安全板块要少,所以我们可以用每一块雷进行轰炸,每炸一次+1,最后安全块上的数字就是要求数字。 如果用if进行判断到分好几种…… 题解列表 2020年02月13日 0 点赞 0 评论 506 浏览 评分:8.0
Minesweeper -题解(C++代码) 摘要:#include #include using namespace std; int xx[ ] = {-1, -1, -1, 0, 0, 1, 1, 1};//周边的数组一维下标 int y…… 题解列表 2020年02月13日 0 点赞 0 评论 290 浏览 评分:0.0
Minesweeper -题解(C++代码) 摘要:##### 此题不难,难在翻译,会翻译了就简单了,此题我个人感觉我用的内存比较大 #include using namespace std; int main()…… 题解列表 2020年02月14日 0 点赞 0 评论 410 浏览 评分:9.9
Minesweeper -题解(C语言代码) 摘要:```c #include int N,M; int f(char a[100][100],int i,int j) { if(i=M) return 0; else if(a[…… 题解列表 2020年02月15日 0 点赞 0 评论 214 浏览 评分:0.0
Minesweeper -题解(C/C++)追求代码简单! 摘要:需要注意的是**数组定义不能用变量名** 比如 int i=4; int a[i]; 是错误的,但是dev这种编译器不会报错,可以运行,但里面的数据初始化时有错的! ```cpp #inc…… 题解列表 2020年02月29日 0 点赞 0 评论 442 浏览 评分:6.0
Minesweeper -题解(Python代码) 摘要:思路就是选把点换成数字0,判断某个元素是否是雷,如果是雷就将它周围不是雷的元素+1 ```python count = 1 while True: a, b = map(int, in…… 题解列表 2020年03月15日 0 点赞 0 评论 690 浏览 评分:9.9
Minesweeper -题解(C语言代码) 摘要:#include void FieldWritte(char a[10][10],char b[10][10],int m,int n); char GridWritte(char a[10]…… 题解列表 2020年03月16日 0 点赞 0 评论 269 浏览 评分:0.0