int count=0;
for (int k=0;k<100;k++){
count++;
}
cout<<cunt;
//程序执行次数:100
//时间复杂度:O(1)
int count=0;
for(int k=0;k<2*N;k++){
count++;
}
int M=10;
while(m--){
count++;
}
cout<<count;
//程序执行次数:2*n+m 2*n+10
//时间复杂度:O(n)
int count=0;
for(int k=0;k<m;k++){
count++;
}
for(int k=0;k<n;k++){
count++;
}
cout<<count;
//【注】时间复杂度为O(N+M);如果给出N远大于M,就可以写出(N);
//程序执行次数:M+N
//时间复杂度:
while(*str){
if(*str==character)
return str;
else
    str++;
}
//程序执行次数:N;
//时间复杂度:0(n)

 

posted on 2024-03-24 09:47  爱吃泡面的皮卡  阅读(13)  评论(0编辑  收藏  举报