gpt4 book ai didi

c - C 中的递归问题

转载 作者:行者123 更新时间:2023-11-30 16:05:37 24 4
gpt4 key购买 nike

我正在用 C 语言开发一个字谜解算器。遇到一个问题,解算器将正确返回前几个字谜,但是对于超出 2 个单词的字谜,它开始进入无限循环。

示例:

我在字谜解算器中输入“团队销售休息”,它以团队啤酒和其他一些内容进行响应。然后,当它到达releases时,它进入无限循环,打印“releases am matt”“releases am am matt”等。

这是代码库:

//recursively find matches for each sub-word
int findMatches(char string[], char found_so_far[])
{
printf("String entering function: %s\n", string);
int string_length = strlen(string);
int_char_ptr *results = getPowerSet(string, string_length);
if(!results)
return 2;
// selects length of subset, starting with the largest
for (int i = string_length - 1; i > 0; i--)
{
// iterates through all the subsets of a particular length
for(int j = 0; j < results->count[i]; j++)
{
word_array *matches = NULL;
// check words against dictionary
matches = dictionary_check(results->table[i][j]);
if (matches)
{
// iterate through matches
for(size_t k = 0; k < matches->size; k++)
{
int found_length;
// find out length of string needed for found
if (strcmp(found_so_far, "") == 0)
found_length = strlen(matches->arr[k]) + 1;
else
found_length = strlen(found_so_far) + strlen(matches->arr[k]) + 2;
char found[found_length];

// on first passthrough, copy directly from matches
if (strcmp(found_so_far, "") == 0)
strcpy(found, matches->arr[k]);
else
sprintf(found, "%s %s", found_so_far, matches->arr[k]);
char tempstr[string_length];
strcpy(tempstr, string);
char *remain = get_remaining_letters(tempstr, results->table[i][j]);
// if there are no letters remaining
if (strcmp(remain, "") == 0)
{
printf("MATCH FOUND: %s \n", found);
// alternatively, could store strings to array
}
else
{
findMatches(remain, found);
}
}
}
}
free(results->table[i][results->count[i] - 1]);
free(results->table[i]);
}
return 0;
}

我的阅读方式(我显然遗漏了一些东西)是它应该尝试匹配所有匹配项,如果不能,它应该移动到找到的下一个字母子集。

我尝试过使用调试器,但无法得出结论或理由。

最佳答案

正如上面评论中提到的:

get_remaining_letters 使用原始结果->table[i][j] 并删除字母。这将为下一次迭代留下空字符串,并导致其无法按预期执行。通过将字符串复制到该函数内的临时字符串来修复。

关于c - C 中的递归问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60235665/

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