单选题

函数calc_paths的功能是递归求解m*n个格子的左上角行走到右下角,...

发布于 2022-03-03 16:01:15

函数calc_paths的功能是递归求解m*n个格子的左上角行走到右下角,有多少种不同的路径(行走方法,只可以向右或向下行走,不能斜线行走)
int calc_paths(int m, int n) 
{  
 if (m == 1 && n == 1)  
  return 0  
 if (m == 1 || n == 1)  
  return 1  
 return (________)  
}
空白处的代码应为

登录后免费查看答案
关注者
0
被浏览
25
知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看