what is the complexity if the code:
int Calculate (int a)
{
if (a <= 2)
return 1;
else
return (Calculate (floor(sqrt(a))) + a);
3
Answers
Answered by
0
Answer:
Cyclomatic complexity is a software metric used to indicate the complexity of a program. It is a quantitative measure of the number of linearly independent paths through a program's source code. It was developed by Thomas J.
Similar questions