10*10表,单元格的相邻计数



代码如下:

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }
    private void button1_Click_1(object sender, EventArgs e)
    {
        Table t = new Table();
    }
}
class Cell
{
    Point position;
    const int SIZE = 20;
    Cell[] neighbors;
    public Cell(Point position, Random r)
    {
        this.position = position;
        Visualisation(r);
    }
    void Visualisation(Random r)
    {
        Graphics paper= Form1.ActiveForm.CreateGraphics();
        paper.DrawRectangle(new Pen(Color.Red), position.X, position.Y, SIZE, SIZE);
    }
}
class Table
{
    Cell[] table = new Cell[100];
    public Table()
    {
        Random r = new Random();
        for (int i = 0; i < 100; i++)
        {
            table[i] = new Cell(new Point(i % 10 * 20 + 40, i / 10 * 20 + 40), r);
        }
    }

我将把数字写到所有的单元格,每个单元格有多少邻居。我该怎么做呢?内堂[]szomszedok;就是我要计算每个细胞有多少邻居的部分。我在单元格中需要的目标:

3 5 5 5 5 5 5 5 5 3
5 8 8 8 8 8 8 8 8 5
5 8 8 8 8 8 8 8 8 5
5 8 8 8 8 8 8 8 8 5
5 8 8 8 8 8 8 8 8 5
5 8 8 8 8 8 8 8 8 5
5 8 8 8 8 8 8 8 8 5
5 8 8 8 8 8 8 8 8 5
5 8 8 8 8 8 8 8 8 5
3 5 5 5 5 5 5 5 5 3

有许多可能的方法。

一种简单的方法是创建一个GetIndex(int x, int y)方法来获取用于table[]的索引。对于不在网格上的位置,让它返回-1。然后创建一个GetCell(int x, int y)方法,该方法调用GetIndex()并返回给定的单元格,或者为不在网格上的位置返回null

现在您可以通过引入查找邻居的方法来计算给定单元格在[x, y]处的邻居数量:

public List<Cell> GetNeighbors(int x, int y)
{
    var neighbors = new List<Cell>();
    neighbors.Add(GetCell(x - 1, y - 1));
    neighbors.Add(GetCell(x + 0, y - 1));
    neighbors.Add(GetCell(x + 1, y - 1));
    // ...
    neighbors.Add(GetCell(x + 1, y + 1));
    return neighbors;
}

然后计算一个单元格的邻居,只需要计算table.GetNeighbors(x, y).Count(n => n != null)

相关内容

  • 没有找到相关文章

最新更新