From: Ajinkya on
How do we solve recurrence relations of the form:

T(c) = T( | c - 2^ceil(log_2(c)) | ) + O( 2^ceil(log_2c) )

What will be the approximate outcome of this equation if not exact ?

-Ajinkya