这个程序的时间复杂度是多少(递归(函数在function中))以及如何计算?

时间:2019-05-23 20:20:14

标签: time-complexity

  

请帮助解决时间复杂性

#include<iostream>
using namespace std;
int fun(int count) 
{ 
    cout<<count; 
    if(count < 3) 
    { 
        fun(fun(fun(++count))); 
    } 
    return count; 
} 
  

“乐趣”功能在另一个“乐趣”“如何处理此类程序”下被调用

int main() 
{ 
    fun(1); 
    return 0; 
}

0 个答案:

没有答案