用一個指定要放入兩個右值參數的function做階層

Q.最近看到了一個題目如下,要用一個函數做出兩個數字相加後的階層,並用遞迴方式寫出:

"Implement a C++ function that computes the factorial of the summation of the two integers using rvalue references as arguments.The function needs to be a recursive function."

我知道怎麼用兩個函數做出來,但是實在不知道怎麼濃縮成一個函數...請大神幫忙!

阅读 2.1k
2 个回答
int fac(int &&a, int &&b) {
  if (b == 0)
    return a > 0 ? fac(a-1, 0) * a : 1;
  return fac(a+b, 0);
}

int fac(int &&a, int &&b) {
  if (a > 0)
    return fac(a-1, b+0) * (a+b);
  else if (b > 0)
    return fac(a+0, b-1) * (a+b);
  else
    return 1;
}
unsigned int fac(unsigned int&& n1, unsigned int&& n2)
{
    if(n1+n2 == 0) return 1;
    return (n1+n2) * fac(n1+n2-1, 0);
}

不知道是否满足要求,不过这个题是在考察啥.

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题