尝试用相似频率的字母表中的相应字母替换字符串中的字母

Trying to replace letters in a string with the corresponding letter in the alphabet with a similar frequency

如标题所述,我正在尝试用字母表中的相应字母替换特定字符串中出现频率最高的字母。

例如,如果字符串中的 D 最多,那么我会将所有 D 替换为 E,因为这是字符串中最常见的字母字母表,然后我会继续这个过程,沿着字母频率下降...

所以我试过了,但我的输出完全错误。

我对 progroqamming 完全陌生,所以如果这一切让你感到厌恶,我很抱歉,但我仍然喜欢按照我已经遵循的格式来做。

我已经将我的代码链接如下,我已经用几种不同的方法完成了,我想知道是否有人能发现我遇到的问题。

我相信它正在替换错误的字母,但我真的不知道,我之前只做过一个简单的 ceasar 密码,所以这不是很大的一步,但我真的无法理解哪里出了问题。

哦,请忽略变量名等,它们只是占位符:

public class Decode
{
    public static void doDecode()
    {
        string decoding = File.ReadAllText(@"thing.txt", Encoding.Default);
        string alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
        int counter = 0;
        int amount = 0;
        int[] letterAmounts = new int[26];

        decoding = decoding.Replace(Environment.NewLine, "");
        decoding = decoding.Replace(" ", "");

        foreach (char k in alphabet)
        {
            amount = Advanced.Adv(decoding, k);
            letterAmounts[counter] = amount;
            counter++;
        }
        File.WriteAllText(@"stuff.txt", Change.doChange(decoding, letterAmounts));
        System.Diagnostics.Process.Start(@"stuff.txt");
    }
}

所以这只是调用另一个 类 并将找到的数字分配给一个数组

public class Advanced
{
    public static int Adv(string test, char c)
    {
        int count = 0;
        foreach (char x in test)
        {
            if (x == c)
            {
                count = count + 1;
            }
        }

        return count;
    }
}

这是之前调用的,只是计算一个字母的数量

public class Change
{
    public static string doChange(string test, int[] letterAmounts)
    {
        string frequency = "ETAOINSHRDLCUMWFGYPBVKJXQZ";
        char[] mostFrequent = frequency.ToCharArray();
        string alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
        char[] abc = alphabet.ToCharArray();
        int most = 0;
        int position = 0;
        for (int tester = 0; tester < 26; tester++)
        {
            most = letterAmounts.Max();
            position = Array.IndexOf(letterAmounts, most);
            test = test.Replace(abc[position], mostFrequent[tester]);
            letterAmounts[position] = 0;
        }
        return test;
    }
}

这就是我认为问题所在,但我无法理解为什么,我再次知道它很混乱,但非常感谢任何帮助。

只需像这样更改您的代码,它可能会起作用

string decoding = File.ReadAllText(@"thing.txt", Encoding.Default);          
string alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
decoding = decoding.ToUpper();

看起来这个部分在做一些奇怪的事情:

for (int tester = 0; tester < 26; tester++)
{
    most = letterAmounts.Max();
    position = Array.IndexOf(letterAmounts, most);
    test = test.Replace(abc[position], mostFrequent[tester]);
    letterAmounts[position] = 0;
}

那么,让我们运行 看一下"I AM BOB" 的示例字符串。这将转换为 "IAMBOB" 并且您的 letterAmounts 将导致 1,1,1,2,1,2。您上面的 for 循环将执行以下操作:

most = 2;
position = 3; //IndexOf reports the zero-based index.
test = test.Replace(abc[3], mostFrequent[0]);
letterAmounts[3] = 0;

在第一个循环中,它会将任何字母“D”替换为“E”,其中有 none。在第二个循环中你会得到:

most = 2; //second B.
position = 5; 
test = test.Replace(abc[5], mostFrequent[1]);
letterAmounts[5] = 0;

这次您将用“T”替换“E”。基本上,您不会替换您认为的字母。此外,这很好地强调了您最终可能会用新字母替换以前替换的字母(在这种情况下,您在第一个循环中将 D 替换为 E,但在第二个循环中,这些 E 现在将替换为 T。

第一个错误似乎是使用 letterAmounts 中最大值的索引,然后在 'abc' 数组中查找字母。这些不一定相互对应。大概你想要的实际上是用最频繁的字母替换字母,所以在第一个循环中用 E 替换 B?如果是这种情况,您将需要创建一个 List> 以使您能够记录字母和出现次数。元组还允许您拥有重复的条目(与字典不同),这很可能会按照本例中字母 B 的示例发生。

然后 return 元组列表中的字母,并将其用于替换的 abc[] 部分。但是,您仍然需要弄清楚如何继续替换已经被替换的字母。例如,这应该发生吗?