修改我的反向字符串函数以添加递归。不幸的是,我的程序一直在爆炸。
在 Visual Studio 中单步执行我的代码,由于某种原因,监视窗口会说 i 等于字符串的长度(即退出 while 循环的终止条件)。我最后一次跨过它,它说我现在比字符串长度少一。然后它永远停留在while循环中。
我知道这听起来很混乱,所以我举个例子。我输入“海绵宝宝”,它会做我想做的一切(即海绵宝宝的长度是 9,打印“bobegnopS”,将 i 增加到字符串长度等),但它说 i 现在是 8(即它是就在 9) 并且永远不会退出 while 循环。
这是我的 ReverseString() 函数:
void ReverseString(char * string, bool stringReversed, int stringLength, int i)
{
i++;
if(!stringReversed)
{
while(*string != '\0')
string++;
}
stringReversed = true;
while(i < stringLength)
{
string--;
std::cout << *string;
ReverseString(string, stringReversed, stringLength, i);
}
}
这是电话:
case 3:
//Learn By Doing 16.6
{
char string[BUFFER_LENGTH];
bool stringReversed = false;
int base = 0;
int exponent = 0;
std::cout << "\nEnter base: " << std::endl;
std::cin >> base;
std::cout << "\nEnter exponent: " << std::endl;
std::cin >> exponent;
//Print pow
NewLine();
std::cout << base << " to the " << exponent << " is " << pow(base, exponent);
//Reverse string using recursion
std::cout << "\nEnter string: " << std::endl;
std::cin >> string;
NewLine();
int stringLength = strlen(string);
int i = 0;
ReverseString(string, stringReversed, stringLength, i);
}