这个程序出现了堆栈溢出的问题,我不确定原因是什么。

huangapple go评论112阅读模式
英文:

This program is stack overflowing and I am not sure why

问题

我不会直接运行代码,但是我可以帮你翻译代码的内容。这段代码是一个计算超级蛋糕的函数。它接受两个整数参数n和k,并返回一个整数结果。

这段代码定义了一个名为hypercake的函数,它使用了一个名为combinations的嵌套函数来计算组合数。combinations函数接受两个整数参数n和r,并返回一个整数结果。

hypercake函数中,首先定义了一个变量sum,并初始化为0。然后进行一系列条件判断和计算,最终返回计算结果。

main函数中,首先声明了两个整数变量n和k。然后通过用户输入来获取n和k的值。接下来调用hypercake函数,并将结果赋给变量ans。最后打印出ans的值。

根据你的描述,代码可能存在溢出的问题。你可以尝试使用更大的数据类型来存储计算结果,例如使用int64代替int。另外,你也可以检查一下计算过程中是否存在其他错误。

英文:

I had to write the following for a programming assignment and after running the code and giving input from the user it overflows.

  1. package main
  2. import (
  3. "fmt"
  4. )
  5. func hypercake(n int, k int) int {
  6. combinations := func(n int, r int) int {
  7. var factorial func(int) int
  8. factorial = func(n int) int {
  9. if n < 0 {
  10. fmt.Print("Cannot take the factorial of a negative number.")
  11. return -1
  12. } else if n == 0 {
  13. return 1
  14. } else {
  15. return factorial(n) * factorial(n-1)
  16. }
  17. }
  18. if r >= 0 && r <= n {
  19. ans := factorial(n) / (factorial(r) * factorial(n-r))
  20. return ans
  21. } else {
  22. fmt.Print("Something was wrong with input")
  23. return -1
  24. }
  25. }
  26. sum := 0
  27. if k > 0 {
  28. if k == 1 {
  29. return 1
  30. } else {
  31. for i := 0; i <= k; i++ {
  32. sum += combinations(n, i)
  33. }
  34. }
  35. return sum
  36. } else {
  37. fmt.Print("You must have a postive number of dimensions")
  38. return -1
  39. }
  40. }
  41. func main() {
  42. var n, k int
  43. fmt.Print("Type how many cuts in your cake.")
  44. fmt.Scan(&n)
  45. fmt.Print("Type how many dimensions in your cake.")
  46. fmt.Scan(&k)
  47. ans := hypercake(n, k)
  48. fmt.Print(ans)
  49. }

I have tried using very small inputs because I thought that it was just exceeding the bounds for a n int and that did not work.

答案1

得分: 3

我觉得你不理解阶乘的概念。
考虑 n! = n * (n - 1) * (n - 2) ... 你明白了吧。
它的公式是 f(n) = n * f(n - 1)。

但是你的实现方式是:
f(n) = f(n) * f(n - 1)
最终你会用相同的参数调用相同的函数,导致堆栈溢出。

我建议你将

  1. return factorial(n) * factorial(n-1)

改为

  1. return n * factorial(n-1)

希望对你有所帮助!

英文:

It seems to me that you don't understand factorial.
Consider n! = n * (n - 1) * (n - 2) ... you get the idea.
It is f(n) = n * f(n - 1)

But you implement factorial as:
f(n) = f(n) * f(n - 1)
You ultimately end up calling the same function with the same arguments you've taken - hence the stack overflow.

I would recomend that you change

  1. return factorial(n) * factorial(n-1)

to

  1. return n * factorial(n-1)

Hope this helps!

huangapple
  • 本文由 发表于 2022年4月2日 10:36:50
  • 转载请务必保留本文链接:https://go.coder-hub.com/71714448.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定