无法解决递归数学表达式

发布于 2025-01-07 15:08:03 字数 1015 浏览 0 评论 0原文

我正在解决简单的数学任务,并且遇到了一些问题。我已经编写了递归函数,但我没有得到与计算器相同的结果。例如n=2,a =2。有人可以帮助我吗?

任务:

1/a + 1/(a+1) +...+ 1/(a(a+1)...(a+n)) 

这是到目前为止我的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _02__Part_A_
{
    class Program
    {
        float res = 1;

        public float func3(int n, int a)
        {
            if (n == 0)
                return 1 / (a * res);
            res = res * (a + n);
            n--;
            return func3(n, a);
        }

        static void Main(string[] args)
        {
            Program a = new Program();

            float resOFfunc3 = (float)0.5;
            string n = Console.ReadLine();
            string ak = Console.ReadLine();

            for (int nn = int.Parse(n); nn > 0; nn--)
            {
                resOFfunc3 += a.func3(nn, int.Parse(ak));
            }

            Console.WriteLine(resOFfunc3.ToString());
        }

    }
}

I'm solving simple math task, and I have faced with some problems. I have written recursive function, but I don't get same result as in calculator. For instance n=2,a =2. Can anybody help me?

Task:

1/a + 1/(a+1) +...+ 1/(a(a+1)...(a+n)) 

Here's my code so far:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _02__Part_A_
{
    class Program
    {
        float res = 1;

        public float func3(int n, int a)
        {
            if (n == 0)
                return 1 / (a * res);
            res = res * (a + n);
            n--;
            return func3(n, a);
        }

        static void Main(string[] args)
        {
            Program a = new Program();

            float resOFfunc3 = (float)0.5;
            string n = Console.ReadLine();
            string ak = Console.ReadLine();

            for (int nn = int.Parse(n); nn > 0; nn--)
            {
                resOFfunc3 += a.func3(nn, int.Parse(ak));
            }

            Console.WriteLine(resOFfunc3.ToString());
        }

    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

囍孤女 2025-01-14 15:08:03

一定是递归函数吗?它可以在没有递归的情况下完成:

float result = 0;
float temp = 1;
for(int i = 0; i < n; i++) {
    temp *= a + i;
    result += 1 / temp;
}

我还没有测试过它,但它是一个非常简单的算法,所以它应该可以工作。

Does it have to be recursive function? It can be done without recursion:

float result = 0;
float temp = 1;
for(int i = 0; i < n; i++) {
    temp *= a + i;
    result += 1 / temp;
}

I haven't tested it, but it's quite a simple algorithm so it should work.

月亮是我掰弯的 2025-01-14 15:08:03

我已经模拟了你的情况:

  1. 你不需要将res设置为全局变量,否则为什么首先要设置递归函数?

  2. 您需要 2 个递归函数

public float func3(int n, int a)
{
    if (a == 0) return 0;
    if (n == 0) return  a;
    return 1 * func3(n - 1, a) * (a + n);
}

public float func4(int n, int a)
{
    if (a == 0) return 0;
    if (n == 0) return 1/func3(n, a);
    return 1/func3(n, a) + func4(n - 1, a);
}

您只需调用 func4。

I have simulate your case:

  1. You dont need to make res as global variable, otherwise why make recursive functions in first place?

  2. You need 2 recursive functions

public float func3(int n, int a)
{
    if (a == 0) return 0;
    if (n == 0) return  a;
    return 1 * func3(n - 1, a) * (a + n);
}

public float func4(int n, int a)
{
    if (a == 0) return 0;
    if (n == 0) return 1/func3(n, a);
    return 1/func3(n, a) + func4(n - 1, a);
}

You just call func4.

盗琴音 2025-01-14 15:08:03

您需要重置 for 循环内的 res 变量

namespace _02__Part_A_
{
    class Program
    {

        float res = 1;


        public float func3(int n,int a) {

            if (n == 0)
                return 1/(a*res);
            res = res * (a + n);
            n--;
            return func3(n,a);
        }

        static void Main(string[] args)
        {
            Program a = new Program();

            float resOFfunc3 = (float)0.5;
            string n = Console.ReadLine();
            string ak = Console.ReadLine();
            for (int nn = int.Parse(n); nn > 0; nn--)
            {
                res = 1;   // Need to add this
                resOFfunc3 += a.func3(nn, int.Parse(ak));
            }

            Console.WriteLine(resOFfunc3.ToString());
        }
    }
}

you need reset the res variable inside the for loop

namespace _02__Part_A_
{
    class Program
    {

        float res = 1;


        public float func3(int n,int a) {

            if (n == 0)
                return 1/(a*res);
            res = res * (a + n);
            n--;
            return func3(n,a);
        }

        static void Main(string[] args)
        {
            Program a = new Program();

            float resOFfunc3 = (float)0.5;
            string n = Console.ReadLine();
            string ak = Console.ReadLine();
            for (int nn = int.Parse(n); nn > 0; nn--)
            {
                res = 1;   // Need to add this
                resOFfunc3 += a.func3(nn, int.Parse(ak));
            }

            Console.WriteLine(resOFfunc3.ToString());
        }
    }
}
嘴硬脾气大 2025-01-14 15:08:03

如果没有必要,我不建议使用递归。我尝试将其表示为循环,因为递归可能会导致堆栈溢出,具体取决于输入(特别是如果参数按值传递)。

例如:

public float func(int n, int a) {
    float div = 1.0;
    float result = 0.0;
    for (int i = 0; i <= n; ++i) {
        div *= a + i;
        result += 1.0 / div;
    }
    return result;
}

I wouldn't recommend using recursion, if it is not neccesary. I'd try to express it as loop, because recursion may lead to stackoverflow depending on the input (especially if the parameters are passed by value).

For example:

public float func(int n, int a) {
    float div = 1.0;
    float result = 0.0;
    for (int i = 0; i <= n; ++i) {
        div *= a + i;
        result += 1.0 / div;
    }
    return result;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文