gpt4 book ai didi

c - 不可读的输出

转载 作者:太空宇宙 更新时间:2023-11-04 08:48:48 25 4
gpt4 key购买 nike

我正在编写一个程序,通过遵循翻译路径来翻译给定的单词。给定单词的每个字母代表一个特定的节点。

输出结果应该是所有要翻译的单词,然后是相应的翻译,但我收到的是这个输出而不是:

a: 4��t�    xp� t����
an: 4��t� xp� t����
ant: 4��t� xp� t����
at: 4��t� xp� t����
atom: 4��t� xp� t����
no: 4��s� xp� t����
not: 4��s� xp� t����
tea: 4��q� xp� t����
ten: 4��q� xp� t����

主.c:

    int main()
{
struct Trie* trie = trie_alloc();
trie_insert_from_file(trie, "dictionary.txt");
trie_print_mappings(trie);
trie_free(trie);

return 0;
}

trie.c:

   int trie_insert(Trie* trie, const char* key, const char* value)
{
...
}

void trie_insert_from_file(Trie* trie, const char* file_name)
{
FILE* file = fopen(file_name, "r");
if (file == NULL)
{
fprintf(stderr, "Unable to open %s for reading: %s\n",
file_name, strerror(errno));
return;
}
while (!feof(file))
{
char key[64];
char value[64];
int nb_matched = fscanf(file, "%63[a-z] : %63[a-z]\n", key, value);

if (nb_matched == 2)
{
trie_insert(trie, key, value);
}
else
{
fprintf(stderr, "Syntax error while reading file\n");
fclose(file);
return;
}
}
fclose(file);
}

static char* str_append_char(const char* str, char c)
{
size_t len = strlen(str);
char* new_str = malloc(len + 2);
strcpy(new_str, str);
new_str[len] = c;
new_str[len + 1] = '\0';
return new_str;
}

static void trie_print_mappings_aux(Trie* trie, const char* current_prefix)
{
if (trie->value != NULL)
printf("%s: %s\n", current_prefix, trie->value);
int i;
for (i = 0; i < TRIE_NB_CHILDREN; i++)
{
Trie* child = trie->children[i];
if (child != NULL)
{
char* child_prefix =
str_append_char(current_prefix, trie_get_child_char(i));
trie_print_mappings_aux(child, child_prefix);
free(child_prefix);
}
}
}

void trie_print_mappings(Trie* trie)
{
trie_print_mappings_aux(trie, "");
}

trie.h:

#define TRIE_NB_CHILDREN 26

typedef struct Trie
{
char* value;
struct Trie* children[TRIE_NB_CHILDREN];
} Trie;

当我使用 trie_insert 函数手动插入数据而不使用 insert_from_file 读取 .txt 文件时,不会发生这种情况。

Eg. trie_insert(trie, (const char*)&"ten", (const char*)&"tien");
trie_insert(trie, (const char*)&"no", (const char*)&"nee");
trie_insert(trie, (const char*)&"not", (const char*)&"niet" );
...

经过一些研究,我认为这可能与我在允许的内存位置之外写入有关。但我不知道到底哪里出了问题。

函数 insert_from_filestr_append_chartrie_print_mapping_aux* 应该可以正常工作,因为它们是给我的。所以错误可能在我实现的 trie_insert 中。

如有任何帮助,我们将不胜感激。

最佳答案

您正在将 trie->value 指针(在 trie_insert 中)设置为存储在堆栈(在 trie_insert_from_file 中)的字符串 - 字符值[64]).

当函数返回时,存储在堆栈中的变量“丢失”了 - 这意味着您的 trie 指向了它不应该指向的地方(在同一个指针地址上会有完全不同和不相关的数据)。

解决方法是将value字符串复制到堆中:

if(*key == '\0')
{
trie->value = (char*)malloc(sizeof(char)*64);
strcpy(trie->value, value);
return 1;
}

请务必在不需要时释放分配的内存。

关于c - 不可读的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20458705/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com