请耐心等待我的代码。我是 C 语言的初学者。下面的代码构建了一个维杰尼雷密码。用户输入一个用于加密plaintext
消息的key
参数。代码将输出ciphertext
.
我收到的错误如下。请注意,我还没有研究过指针。
任何诊断错误的帮助将不胜感激!
vigenere.c:47:13: runtime error: store to null pointer of type 'char'
Segmentation fault
代码
#include <cs50.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main(int argc, string argv[]){
// check for 2 arguments
if (argc != 2){
printf("missing command-line argumentn");
return 1;
}
// check for character argument
int i,n;
for (i = 0, n = strlen(argv[1]); i < n; i++){
if (!isalpha(argv[1][i])){
printf("non-character argumentn");
return 1;
}
}
// if previous 2 checks are cleared, request 'plaintext' from user
printf("plaintext:");
// declare plaintext, key, and ciphertext
string t = get_string(); // plaintext
string u = argv[1]; // key (argument)
string y = NULL; // ciphertext
// encode plaintext with key -> ciphertext
for (i = 0, n = strlen(t); i < n; i++){
if (tolower(t[i])){
y[i] = (char)((((int)t[i] + (int)tolower(u[i%n])) - 97) % 26) + 97;
} else {
y[i] = (char)((((int)t[i] + (int)tolower(u[i%n])) - 65) % 26) + 65;
}
}
printf("ciphertext: %sn", y);
}
您会收到此错误消息,因为变量y
NULL
。
类型string
实际上是对char *
的typedef
(换句话说是别名(,意思是"指向char
的指针",因此y
是指向字符的指针。
当你做y[i]
时,你取消引用一个不允许的NULL
指针,并导致错误。NULL
代表不存在的内存空间,因此您无法在此处存储密文!
要解决此问题,您可以声明并初始化y
如下所示:
char *y = calloc(strlen(t) + 1, sizeof(char)); // Ciphertext, ready to hold some data !
您必须#include <stdlib.h>
才能使用calloc()
功能。
现在,y
是一个指向大到t
的内存空间(明文和密码文本具有相同的大小(的指针,您可以取消引用并将数据写入!
在继续之前,您绝对应该了解指针以及内存的工作原理。一些程序员家伙在你的原始帖子的评论中发布了一个很棒的书单,看看吧!