-1

我想知道如何在凯撒密码中检测从程序中读取的加密文本文件中的移位量,然后显示该特定量?谢谢!编辑** 我还阅读了一个用于 argv[2] 的 smallDictionary 文件。旋转功能:

  int rotate(int c, int n){
if (n == 0) return c;
int nRot = abs(n) % (RANGECHAR + 1);
if(n > 0)
return rotatePlus(c + nRot);
else
return rotateMinus(c - nRot);
}





int main( int argc, char *argv[]){

FILE *fp = stdin;  // defaults
int  n = 13;
int shift;
int i = 0;
// process command line
switch(argc) {
case 2: // only have n, assumed input from stdin
n = atoi(argv[1]);
break;
case 3: // have n and input file 
fp = fopen(argv[1], "r"); // should check for problems
n  = atoi(argv[2]);
break;
default:
fp = stdin;
n  = 13;
}
// rotate text
int c;
while( (c = fgetc(fp)) != EOF){
if(!isspace(c)){
 c= rotate(c,n);

}
i++;
    printf("%c", c);
}

fclose(fp);
}
4

1 回答 1

3

您需要以数组形式出现的语言(可能是英语)的分布数据int lang_distribution[26]。然后你将不得不制作另一个数组,就像int doc_distribution[26]它会填充从你的文本中获取的数据。它们都应该被规范化,以便它们代表字符的相对出现。

下一步将包括从to移动doc_distribution一个整数,并且对于每次移动,程序都应该测量where的总和。差异总和最低的移位是您的密码代码。所有这些都可以通过两个嵌套元素来实现。棘手的部分可能是循环中的索引,但您可能可以通过使用模运算符来获得正确的结果。025abs(lang_distribution[x] - doc_distribution[x])x belongs to <0,25>for()%

于 2015-03-28T23:04:38.553 回答