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.

link|improve this question

67% accept rate
5  
Now that you have a reason to understand the first part, what's stopping you from going back and re-reading it using the Sieve as a concrete example? – S.Lott Jun 27 '11 at 17:00
IMO, Sedgewick's books are quite poor. Though it's only available used, if you can find a copy of Algorithms + Data Structures = Programs (by Niklaus Wirth), it's fairly short, and exceptionally readable. Its code is in Pascal, but most modern languages are similar enough for it to be quite easy to follow. – Jerry Coffin Jun 27 '11 at 17:03
Belongs on math.stackexchange.com – Ted Hopp Jun 27 '11 at 17:10
@S.Lott I really dont think I will be able to grasp it, and also since I am pressured for time, I only want to learn the basics of algorithm analysis. @Jerry Sedgewick is not a gifted writer. I have read some really terse books but this one is tough, may be because of the math. Any other suggestions? – ChrisOdney Jun 27 '11 at 17:28
This link helped me understand the solution for time complexity of eratosthenes: stackoverflow.com/questions/4059534/… The key here is the condition of the loop which is j*i < N or in other words j < N / i. So the inner loop runs for N/i every time and that explains N/2 + N/3 + ... – ChrisOdney Jun 27 '11 at 17:42
feedback

2 Answers

The answer can be found in another SO question: Time complexity of Sieve of Eratosthenes algorithm

link|improve this answer
I am looking more for a book/short tutorial that can help me here, just the basics. – ChrisOdney Jun 27 '11 at 17:31
feedback

Here is a simple calculation. First, observe that the running time is governed by the following expression:

        N                               N
       ---                             ---
       \                               \
  N +  /      N/p      =     N + N *   /    1/p
       ---                             ---
    p is a prime                  p is a prime

Now the right hand sum is the harmonic series of primes, which converges asymptotically as

          N
          ---
          \
          /   1/p     ~~~>    ln ln N  + o(1)
          ---
      p is a prime 

So, substituting back in, you get the asymptotic bound of O(N log(log(N))) for the time complexity of the seive as a function of N.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.