Time complexity if you have an if statement with a method

前端 未结 0 1249
青春惊慌失措
青春惊慌失措 2020-12-08 07:30

So lets say I had

x = false;
while{

if (function1()){
 x=true;
 break;

}

if (function2()){
 x=true;
 break;

}
if (function3()){
 x=true;
 break;

}

if (f         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题