gpt4 book ai didi

c++ - 如何将索引变量用于递归函数?

转载 作者:行者123 更新时间:2023-11-27 23:01:13 24 4
gpt4 key购买 nike

我如何为递归函数使用索引变量,该函数在每次调用函数时递增,以便它可以返回一个值而不将其作为参数传递或使用静态或全局变量,因为我想多次调用此函数时间不止一次。

这是我的代码:

bool isAlphabetic(string s)
{
static int i = 0;
if (i==s.size())
{
return true;
}
else if (!isalpha(s[i])){
return false;
}
i++;
return isAlphabetic(s);
}

有人知道如何解决这个问题吗?我知道我使用的是静态变量,但这会使函数在第一次调用时正确运行,但之后就不能正常运行。

最佳答案

值得注意的是,由于堆栈溢出,递归可能会因较大的字符串而失败。

bool isAlphabetic(const string & s, int pos){
if(i==s.size()) return true;
else if(!isalpha(s[pos])) return false;
return isAlphabetic(s, ++pos);
}

bool isAlphabetic(const string & s){
return isAlphabetic(s, 0);
}

关于c++ - 如何将索引变量用于递归函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27462854/

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