我对这个循环有点困惑。给定一个数字n,我们必须找出指令执行多少次。for
int j = 0;
for(int p = 0; p < n*n; p++ )
{
for(int q = 0; q < p; q++ )
j++;
}
我的回答是.这个答案正确吗?O(n^4)
人到中年有点甜
相关分类