I am having trouble figuring out the tight bound and the lower bound for this pseudocode. Could anyone help ?
Array S;
for i <-- 0 to n-1
for j <-- 0 to n-1
for k <-- 0 to n-1
M[i][j] = M1[i][k]*M2[k][j]
return M
Thanks!
I am having trouble figuring out the tight bound and the lower bound for this pseudocode. Could anyone help ?
Array S;
for i <-- 0 to n-1
for j <-- 0 to n-1
for k <-- 0 to n-1
M[i][j] = M1[i][k]*M2[k][j]
return M
Thanks!