0

我对迭代函数和递归函数有疑问。我有一个迭代函数,我必须将其转换为递归函数。你能给我一些关于我的代码的建议吗?非常感谢

该代码用于确定数据点数组是否对应于使用递归的凹函数。

这是迭代版本的代码:

bool isConcave(double a[], int n)
{
int slope = 1;
bool concave = true;

for (int i = 1; i < n && concave; i++)
{
    double delta = a[i] - a[i-1];

    if (slope > 0)
    {
        if (delta < 0)
            slope = -1;
    }
    else if (delta > 0)  
        concave = false; // slope == -1 and delta > 0
}
return concave;
}

而且,这是我无法工作的递归版本的代码:

bool isConcave_r(double a[], int n, int& slope)  
{
//Implement this function using recursion
double delta = a[n] - a[n-1];
bool concave = true;

if (n == 0)
    return false;
if (slope > 0)
{
    if (delta < 0)
    {
        slope = -1;
    }
    else
        concave = true;
}else
    return 0;

//dummy return statement
return isConcave_r(a, n, slope);

}
4

2 回答 2

0

不需要最好/最干净的方式,但您可以替换任何循环

for (int i = 0; i != N; ++i) {
    body(i, localVars);
}

经过

void body_rec(int N, int i, LocalVars& localVars)
{
    if (i == N) return;
    body(i, localvars);
    body_rec(N, i + 1, localVars);
}

或者

int body_rec(int N, int i, LocalVars& localVars)
{
    if (i == N) return localVars.res; // or any correct value
    body(i, localvars);
    if (localVars.end) { // break the "loop", and so stop the recursion.
        return localVars.res; // or any correct value
    }
    return body_rec(N, i + 1, localVars);
}

因此,在您的情况下,您忘记传递slope到递归中。

[编辑]

完整解决方案:

bool isConcave_r(int N, int i, double a[], int slope)
{
    if (i >= N) return true;

    const double delta = a[i] - a[i-1];

    if (slope > 0) {
        if (delta < 0) {
            slope = -1;
        }
    }
    else if (delta > 0) {
        return false;
    }
    return isConcave_r(N, i + 1, a, slope);
}

bool isConcave(double a[], int n)
{
    int i = 1;
    int slope = 1;
    return isConcave_r(n, i, a, slope);
}

另请注意,名称似乎“不正确”,您不检查“曲线”是否凹入,delta == 0我认为应该具体的情况......

于 2013-10-15T10:47:04.483 回答
0

在程序的迭代版本中,计算从 1 移动到 n-1,但在递归版本中,计算从 n-1 移动到 1。因此,使用头递归代替尾递归。斜率应该是静态变量。因此,将斜率声明为静态变量。它会起作用的。

于 2013-10-15T10:57:51.903 回答