Minesweeper(c语言) - 代码很简单, 无需动脑 摘要:一遍写完,没做优化,跟着代码走读就能理解参考代码:#include <stdio.h> void InitBoard(char board[100][100], int row, int col) …… 题解列表 2022年11月01日 0 点赞 0 评论 100 浏览 评分:0.0
敲简单C语言代码!!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n,r,p,q,k,w=0; char a[100][100]; while(~sc…… 题解列表 2022年10月31日 0 点赞 0 评论 83 浏览 评分:0.0
python解题,清晰易懂 摘要:解题思路:如何对周围元素进行遍历,寻找炸弹的个数是个关键的问题。因此,我们将每个字符存入一个二维数组中,方便我们进行遍历。注意事项:输出是个重点,我在输出上犯了好几次错误,注意输出的格式!参考代码:d…… 题解列表 2022年10月01日 0 点赞 0 评论 115 浏览 评分:0.0
1096: Minesweeper 摘要:```cpp #include #include using namespace std; const int maxn=101; int n,m,x[maxn],y[maxn],vist[…… 题解列表 2022年08月31日 0 点赞 0 评论 164 浏览 评分:9.9
Minesweeper(留个记录) 摘要:解题思路:注意事项:字符输入—scanf(" %c")(空格可换成\n \t),单个字符读取,可忽略掉空格、换行参考代码:#include <stdio.h> //查找周围雷的数量 int min…… 题解列表 2022年08月19日 0 点赞 0 评论 141 浏览 评分:9.9
SinzoL--题解 1096: Minesweeper 摘要:####先翻译一下:给出N×M大小的一个字符数组,每个单元由"*"或"."组成,"*"代表地雷,你要做的就是计算每个不是雷的单元周围有几个雷,并按示例输出 ###下面是代码: ```cpp #i…… 题解列表 2022年06月29日 0 点赞 0 评论 147 浏览 评分:0.0
c语言方法(常规) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or …… 题解列表 2022年05月30日 0 点赞 0 评论 109 浏览 评分:0.0
1096: Minesweeper 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#define MAX 100 // 地图最大尺寸 using namespace std; char position[M…… 题解列表 2022年05月08日 0 点赞 0 评论 108 浏览 评分:0.0
Minesweeper遍历 摘要:参考代码:#include<iostream> #include<cstring> using namespace std; int dx[8]={1,0,-1,0,1,1,-1,-1}; i…… 题解列表 2022年05月07日 0 点赞 0 评论 122 浏览 评分:0.0
暴力法+轰炸与排雷 综合法 的 简化版 完成 Minesweeper 摘要:解题思路:给出2种解法,时间复杂度几乎一样,但空间复杂度约为一半的关系。注意事项:暴力法:1.int s[102][102] = {0}为通用写法,若使用c++14,可使用int s[x+2][y+2…… 题解列表 2022年04月06日 0 点赞 0 评论 563 浏览 评分:9.9