-1
私は実行時間T(n)を決定したい次の擬似コードを持っています。 誰かが私に従うべきステップを教えてもらえますか?ここで コードです:擬似コードの実行時間を決定する
i := 1;
while (i <= n)
j := i;
x := x+A[i];
while (j > 0)
y := x/(2*j);
j = j /2; // Assume here that this returns the floor of the quotient
i = 2 * i;
return y;
@saydak更新された –