Wednesday, September 18, 2019

algorithms - How to find the inverse of nlogn?

So I'm on chapter 1 of introduction to algorithms & at the end the book proposes a problem: here



The answers are there & I was able to work through most of them myself despite my lack of math skills by finding the inverse of the f(n)'s in the leftmost column. For instance, the n3 has an inverse of 3n but what is the inverse for nlog2n?



However, there is nlog2n=1000000 microseconds which I cannot figure out how to find the inverse of (n=62746). I'm writing python code so that way I don't screw up my calculations as I move through the table but I have no idea how to find this.



I'm not very math savvy so if you use notation, can you please name it so I can google it?



If it's not possible to reverse engineer - can someone please explain how was 62746 calculated for that row/column combination?




Thank you for your help.

No comments:

Post a Comment

analysis - Injection, making bijection

I have injection f:AB and I want to get bijection. Can I just resting codomain to f(A)? I know that every function i...