- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我找到了几年前写的一个简单的扫雷程序,如果您可以优化以下代码,我很感兴趣,因为它看起来一点也不好。
以下方法用于检查索引是否超出范围并返回所请求索引的值:
private static bool IsMineOnCoords(bool[,] field, int posI, int posJ)
{
if (posI < 0 || posI > field.GetLength(0) - 1 || posJ < 0 || posJ > field.GetLength(1) - 1) return false;
return field[posI, posJ];
}
我在 8 个 if 语句中为给定索引周围的每个位置调用此方法:
int count = 0;
if (IsMineOnCoords(field, posI + 1, posJ)) count++;
if (IsMineOnCoords(field, posI - 1, posJ)) count++;
if (IsMineOnCoords(field, posI + 1, posJ + 1)) count++;
if (IsMineOnCoords(field, posI + 1, posJ - 1)) count++;
if (IsMineOnCoords(field, posI - 1, posJ + 1)) count++;
if (IsMineOnCoords(field, posI - 1, posJ - 1)) count++;
if (IsMineOnCoords(field, posI, posJ + 1)) count++;
if (IsMineOnCoords(field, posI, posJ - 1)) count++;
有没有更好的方法可以做到这一点?
最佳答案
像这样的东西应该适合你。基本上,您只需计算出周围单元格的 i
和 j
坐标的最小值和最大值,然后循环遍历这些单元格,将 true
值(但跳过传入的单元格):
private static int GetSurroundingBombCount(bool[,] field, int posI, int posJ)
{
var surroundingBombCount = 0;
// Get the minimum and maximum i and j coordinates of the surrounding cells
var iMin = posI - 1 < 0 ? 0 : posI - 1;
var iMax = posI + 1 > field.GetUpperBound(0) ? posI : posI + 1;
var jMin = posJ - 1 < 0 ? 0 : posJ - 1;
var jMax = posJ + 1 > field.GetUpperBound(1) ? posJ : posJ + 1;
// Loop through these cells and increment our counter for each true value
// unless we hit the initial cell, in which case we just continue
for (int i = iMin; i <= iMax; i++)
{
for (int j = jMin; j <= jMax; j++)
{
if (i == posI && j == posJ) continue;
if (field[i, j]) surroundingBombCount++;
}
}
return surroundingBombCount;
}
那么用法看起来像这样:
int surroundingBombCount = GetSurroundingBombCount(field, posI, posJ);
我使用这段代码对其进行了测试,它生成了一个 3x3 的网格(您可以将其调整为任何您想要的),在单元格上放置随机炸弹,然后显示两个网格以便您可以直观地检查它们:一个带有炸弹的网格位置,以及另一个带有计数的网格:
private static void Main()
{
bool[,] field = new bool[3, 3];
Random rnd = new Random();
// The lower this number, the more bombs will be placed.
// Must be greater than one, should be greater than 2.
// If set to '2', all cells will contain a bomb, which isn't fun.
int bombScarcity = 10;
// Assign random bombs
for (int i = 0; i < field.GetLength(0); i++)
{
for (int j = 0; j < field.GetLength(1); j++)
{
field[i, j] = rnd.Next(1, bombScarcity) % (bombScarcity - 1) == 0;
}
}
// Show bomb locations
Console.WriteLine("\nBomb Locations:\n");
for (int i = 0; i < field.GetLength(0); i++)
{
for (int j = 0; j < field.GetLength(1); j++)
{
Console.Write(field[i, j] ? " T" : " F");
if ((j + 1) % field.GetLength(1) == 0) Console.WriteLine();
}
}
// Show bomb counts
Console.WriteLine("\nBomb Counts:\n");
for (int i = 0; i < field.GetLength(0); i++)
{
for (int j = 0; j < field.GetLength(1); j++)
{
Console.Write($" {GetSurroundingBombCount(field, i, j)}");
if ((j + 1) % field.GetLength(1) == 0) Console.WriteLine();
}
}
Console.Write("\nDone!\nPress any key to exit...");
Console.ReadKey();
}
输出
为了好玩,一个 10 x 10:
关于c# - 如何计算给定索引周围 bool[,] 中的真实值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43477642/
在下面的代码中,我得到一个 uninitialized value警告,但仅限于第二个 given/when例子。为什么是这样? #!/usr/bin/env perl use warnings; u
整个“开关”功能是否已成为实验性的?在没有 Perl 的 future 版本破坏我的代码的情况下,我可以依赖其中的某些部分吗?一般来说,将稳定功能更改为实验性的政策是什么? 背景use feature
有没有办法在一个条件语句中写出如下语句? a和b不能同时等于5。 (a可以是5,b可以是5,但是a AND b不能是5) 最佳答案 正如克里斯指出的那样,您要查找的是逻辑异或,相当于逻辑不等于 !=:
我正在寻找一种算法来找到给定 n 条线段的所有交点。以下是来自 http://jeffe.cs.illinois.edu/teaching/373/notes/x06-sweepline.pdf 的伪
数组中有 N 个元素。我可以选择第一项最多 N 次,第二项最多选择 N-1 次,依此类推。 我有 K 个 token 要使用并且需要使用它们以便我可以拥有最大数量的项目。 arr = [3, 4, 8
我正在尝试修复法语文本中的语法性别,想知道是否有办法从某个词条中获取所有单词的列表,以及是否可以在此类列表中进行查找? 最佳答案 尝试: import spacy lemma_lookup = spa
我正在为 Win32 编写一个简单的自动化测试应用程序。它作为一个单独的进程运行,并通过 Windows API 访问目标应用程序。我可以阅读窗口层次结构,查找标签和文本框,并通过发送/发布消息等来单
在 nodeJs 中使用 Sequelize 时,我从 Sequelize 收到此错误,如下所示: { [SequelizeUniqueConstraintError: Validation erro
本文https://arxiv.org/pdf/1703.10757.pdf使用回归激活映射 (RAM) - 而不是类激活映射 (CAM) 来解决问题。有几篇文章描述了如何实现 CAM。但是我找不到
我正在研究 Mach 动态链接器 dyld。这个问题适用于所有 Apple 平台,但很高兴得到特定于平台的答案;我正在使用 ObjC,但如果对你有用的话,我也很乐意翻译 Swift。 The rele
我有一个包含数千个 Instagram 用户 ID 的列表。我如何获得他们的 Instagram 用户名/句柄? 最佳答案 你必须使用这个 Instagram API: https://api.ins
我在下面的代码: def main(args: Array[String]) { val sparkConf = new SparkConf().setAppName("Spark-Hbase").s
我有一个表格,其中包含从 1 到 10 的数字。(从 D2 到 M2) 假设A1中有03/09/2019 并且在B1中有06/09/2019 并且在C1中有Hello 在A 列中,我有多个系列的单词,
我想在给定服务对应的 URI 的情况下检索服务的注释(特别是 @RolesAllowed )。这是一个例子: 服务: @GET @Path("/example") @RolesAllowed({ "B
我看到 OraclePreparedStatementexecuteQuery() 表现出序列化。也就是说,我想使用相同的连接对 Oracle 数据库同时运行两个查询。然而,OraclePrepare
import java.util.Scanner; public class GeometricSumFromK { public static int geometricSum(int k,
我创建了一个抽象基类Page,它说明了如何构建动态网页。我正在尝试想出一种基于作为 HttpServletRequest 传入的 GET 请求生成 Page 的好方法。例如... public cla
我的字符串是一条短信,采用以下两种格式之一: 潜在客户短信: 您已收到 1 条线索 标题:我的领导 潜在客户 ID:12345-2365 警报设置 ID:890 短信回复: 您已收到 1 条回复 标题
我在 python 中有以下代码: class CreateMap: def changeme(listOne, lisrTwo, listThree, listFour, listfive):
这是在 Hibernate 上运行的 JPA2。 我想检索相同实体类型的多个实例,给定它们的 ID。其中许多已经在持久性上下文和/或二级缓存中。 我尝试了几种方法,但似乎都有其缺点: 当我使用 ent
我是一名优秀的程序员,十分优秀!