码迷,mamicode.com
首页 > 其他好文 > 详细

递归计算Ackermenn函数

时间:2020-01-25 22:02:25      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:nbsp   class   ret   href   ref   ble   http   problem   problems   

https://pintia.cn/problem-sets/12/problems/355

 1 int Ack(int m, int n)
 2 {
 3     int ret;
 4 
 5     if (m == 0)
 6     {
 7         ret = n + 1;
 8     }
 9     else if (n == 0 && m > 0)
10     {
11         ret = Ack(m - 1, 1);
12     }
13     else if (m > 0 && n > 0)
14     {
15         ret = Ack(m - 1, Ack(m, n - 1));
16     }
17 
18     return ret;
19 }

 

递归计算Ackermenn函数

标签:nbsp   class   ret   href   ref   ble   http   problem   problems   

原文地址:https://www.cnblogs.com/2018jason/p/12233438.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!