4

是否可以在每次迭代时使用新值迭代嵌套的 if 语句?我正在尝试构建一个一维元胞自动机(对于家庭作业,我不能否认)而且我对 C# 完全陌生,因为下面的代码无疑会保证。我尝试使用可用的最直接、基本的 DIY 方法来创建这个程序,但我已经陷入了困境。

我有一个长度为 8 的 1 和 0 的字符串,比如说

string y;
y = "11110000";

我想将这个设置分解为 8 个子字符串组,每组 3 个,每组由 y 中的一个值及其两侧的单个值组成。所以从 0 开始计数,第 3 组将是 110,第 7 组将是 001。但是,子字符串只会提供第 1 组到第 6 组,因为我无法根据自己的喜好将它们围绕 y 循环,所以我定义了以下内容 -

y1=y.Substring(7,1)+y+y.Substring(0,1);

使用 y1 我能够取出所有必要的子字符串。这些基本上定义如下 -

string a0, a1, a2, a3, a4, a5, a6, a7;
                    a0 = y1.Substring(0, 3);
                    a1 = y1.Substring(1, 3);
                    a2 = y1.Substring(2, 3);
                    a3 = y1.Substring(3, 3);
                    a4 = y1.Substring(4, 3);
                    a5 = y1.Substring(5, 3);
                    a6 = y1.Substring(6, 3);
                    a7 = y1.Substring(7, 3);

下一代元胞自动机的规则由该程序中的用户决定——也就是说,用户可以选择是否为所有迭代的子字符串,例如 111->0 或 1。对于每个子字符串,我以下列方式使用(非常多)if 表

                     {
                        if (a0=="000")
                    {
                        Console.Write(a);
                        }
                        else if (a0=="001")
                        {
                            Console.Write(b);
                        }
                        else if (a0 =="010")
                        {
                            Console.Write(c);
                        }
                        else if (a0 == "011")
                        {
                            Console.Write(d);
                        }
                        else if (a0 == "100")
                        {
                            Console.Write(e);
                        }
                        else if (a0 == "101")
                        {
                            Console.Write(f);
                        }
                        else if (a0 == "110")
                        {
                            Console.Write(g);
                        }
                        else if (a0 == "111")
                        {
                            Console.Write(h);
                        }
                    }

其中 a,b,c,d,e,f,g,h 是整数,是用户选择的规则。例如,假设用户决定每个集合 000 应该产生一个 1 值,然后 a=1。b 对应于 {0,0,1},c 对应于 {0,1,0},依此类推。然而,这种方法的一个相当明显的问题是,我最终只能得到 1 代 int 我无法获得。我很想用新一代替换 y1 (转换为字符串)。如果这不可能,请告诉我!

这个链接也可能会让事情变得更清楚

4

1 回答 1

0

这就是你如何获得 A+ 的方法:D

  private static int[,] HipPriestsHomework()
    {
        string y = "11110000";
        Console.WriteLine(y);
        var rules = new[]
        {
            new {pattern = 0, result = 0},
            new {pattern = 1, result = 1},
            new {pattern = 2, result = 1},
            new {pattern = 3, result = 1},
            new {pattern = 4, result = 1},
            new {pattern = 5, result = 0},
            new {pattern = 6, result = 0},
            new {pattern = 7, result = 0},
        };
        Dictionary<int, int> rulesLookup = new Dictionary<int, int>();
        foreach(var rule in rules)
        {
            rulesLookup.Add(rule.pattern, rule.result);
        }

        int numGenerations = 10;
        int inputSize = y.Length;
        int[,] output = new int[numGenerations, inputSize];

        int[] items = new int[y.Length];
        for(int inputIndex = 0; inputIndex< y.Length; inputIndex++)
        {
            string token = y.Substring(inputIndex, 1);
            int item = Convert.ToInt32(token);
            items[inputIndex] = item;
        }

        int[] working = new int[items.Length];
        items.CopyTo(working, 0);
        for (int generation = 0; generation < numGenerations; generation++)
        {
            for (uint y_scan = 0; y_scan < items.Length; y_scan++)
            {
                int a = items[(y_scan - 1) % items.Length];
                int b = items[y_scan % items.Length];
                int c = items[(y_scan + 1) % items.Length];
                int pattern = a << 2 | b << 1 | c;
                var match = rules[pattern];
                output[generation, y_scan] = match.result;
                working[y_scan] = match.result;
                Console.Write(match.result);
            }
            working.CopyTo(items, 0);
            Console.WriteLine();
        }

        return output;
    }
于 2014-10-22T17:10:14.177 回答