5

I have this little exercise:

for ( i = 0; i < 2 * n; i += 2 )
  for ( j = 1; j <= n; j <<= 1 )
    if ( j & i )
      foo ();

(j <<= 1 means j = (j << 1), where << is the bitwise left shift operator. & is the bitwise and operator.)

I am supposed to determine how many times will the foo function be called for some n. The result should be both an exact number (or the most accurate approximation possible) and asymptotic (like O(n)).

Gilles 'SO- stop being evil'
  • 44,159
  • 8
  • 120
  • 184
Machta
  • 151
  • 2

1 Answers1

4

The number of foo() calls is the number of 1 bits in all numbers from 0 to $n$ (or all even numbers between $0$ and $2n$ - same thing). Asymptotically, it's $O(n \log n)$, because the number of 1 bits is around $\log_2(n)/2$.

I don't have an exact function. It won't be a smooth function - for example, $f(1023)-f(1022)=10$, but $f(1024)-f(1023)=1.$

Juho
  • 22,905
  • 7
  • 63
  • 117