帮助理解数学递归方法

发布于 2024-11-03 15:17:29 字数 517 浏览 1 评论 0原文

我在浏览网页搜索递归方法时发现了这种方法。 相信我,我无法理解它的逻辑。基本上,该方法查找给定数字中的密码数量。

public int aantalCijfers(int n)
{
    if (n < 10)
    {
        return 1;
    }
    else if ((n > 9) && (n < 100))
    {
        return 2;
    }
    else
    {
        return (aantalCijfers(n / 100) + 2);
    }
}

让我们举个例子。假设我们使用 5000 作为参数,我的结论如下:

  1. 5000
  2. 52
  3. 2 (由 else-if 语句返回,因为 52 在 9 和 100 之间)

但是,它返回 4,并且工作正常,虽然我期待它不会。 如果您弄清楚它是如何工作的,您能否指出该方法如何得出正确结论的步骤?

I came across this method browsing the web searching for recursive methods.
Believe me, I cant get its logic. Basically this method finds the amount of ciphers in a given number.

public int aantalCijfers(int n)
{
    if (n < 10)
    {
        return 1;
    }
    else if ((n > 9) && (n < 100))
    {
        return 2;
    }
    else
    {
        return (aantalCijfers(n / 100) + 2);
    }
}

Let's make an example. Let's imagine we use 5000 as parameter, my conclusion would be as in the following steps:

  1. 5000
  2. 52
  3. 2 (returned by the else-if statement since 52 is between 9 & 100)

But instead, it returns 4, and it works fine, while I was expecting it not to.
Can you please, if you figure out how it works, point the steps of how this method comes to the correct conclusion?

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

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

发布评论

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

评论(4

木森分化 2024-11-10 15:17:29

当然。 :-) 但首先,请注意该函数显示的是 aantalCijfers(n/100) + 2不是 aantalCijfers(n/100 + 2) >。我有一种感觉,你可能误读了。

基本情况是 1 或 2 位数字。对于超出此范围的任何内容,请除以 100(从而去掉两位数),重新计算,并将结果加 2。

以 5000 为例:

  1. digits(5000)
  2. digits(50) + 2
  3. 2 + 2
  4. 4

您可以进一步扩展这一点。假设使用 1000000。

  1. digits(1000000)
  2. digits(10000) + 2
  3. digits(100) + 2 + 2
  4. digits (1) + 2 + 2 + 2
  5. 1 + 2 + 2 + 2
  6. 7

Sure. :-) But first, please note that the function says aantalCijfers(n/100) + 2, not aantalCijfers(n/100 + 2). I have a feeling that you may have misread that.

The base cases are 1 or 2 digits. For anything beyond that, divide by 100 (thus stripping away two digits), recalculate, and add 2 to the result.

Using 5000 as your example:

  1. digits(5000)
  2. digits(50) + 2
  3. 2 + 2
  4. 4

You can extend that even further. Let's, say, use 1000000.

  1. digits(1000000)
  2. digits(10000) + 2
  3. digits(100) + 2 + 2
  4. digits(1) + 2 + 2 + 2
  5. 1 + 2 + 2 + 2
  6. 7
停滞 2024-11-10 15:17:29

非常简单

  • 100 以内(且大于 9)的数字有 2 位数字,
  • 。因此除以 100 会增加 2 位数字。
  • 您再次调用该函数,它会检查余数,然后继续执行,直到出现退出条件之一,最多 10 或 10 到 99

Its pretty straightforward

  • a number up to a hundred (and greater than 9) has 2 digits.
  • therefore dividing by a 100 adds 2 digits to your count.
  • You call the function again and it checks the remainder, it then keeps on going until one of the exit conditions, up to 10 or 10 to 99
时光是把杀猪刀 2024-11-10 15:17:29

例子

 aantalCijfers(5000)

 returns (aantalCijfers(50) which returns 2) + 2 = 4

Example

 aantalCijfers(5000)

 returns (aantalCijfers(50) which returns 2) + 2 = 4
绳情 2024-11-10 15:17:29

第二步你错了,是f(50)+2,而不是50+2。
f(50) 是第二个 if,返回 2,所以它是 2+2,结果是 4。

You're mistaken in second step, it's f(50)+2, not 50+2.
and f(50) is the second if, which returns 2, So it's 2+2, which yields 4.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文