I am reading the book Algorithms in Java by Robert Sedgewick. I was not able to understand anything from the first part, it talks too much about analysis of algorithms. Kind of skipped it.
As I start reading the other part, I encountered Sieve of Eratostenes. I clearly understand how it works but I dont get how the author without explaining arrived at the running time as:
N + N/2 + N/3 + N/5 +....= NH subscript N ~ L ln N.
I think my grasping capacity has deteriorated. I want to continue reading this book, I dont mind skipping complex running time derivations but I would like to understand atleast the basic ones such as the one mentioned.
Can you please suggest me a simple tutorial or a short book that I can finish quickly which will help me in understanding things like this?
Thanks, Chris.