7该程序的时间复杂度为:()。 

来源: 数据结构   

7该程序的时间复杂度为:()。 

int getLength(int n)

{

 if(n>=0)

 {

  return n;

 }

 else

 {

  return -1;

 }

}

答案解析