Tagged Questions
17
votes
2answers
2k views
Time complexity of Sieve of Eratosthenes algorithm
From Wikipedia:
The complexity of the algorithm is
O(n(logn)(loglogn)) bit operations.
How do you arrive at that?
That the complexity includes the loglogn term tells me that ...
6
votes
1answer
333 views
SPOJ Problem KPRIMES2
Hello all
I am new to this forum and not well aware of protocols of this forum so pardon me for my ignorance. My question is related to spoj problem https://www.spoj.pl/problems/KPRIMES2/. I am ...
4
votes
2answers
465 views
Help understanding Sieve of Eratosthenes implementation
This is boring, I know, but I need a little help understanding an implementation of the Sieve of Eratosthenes. It's the solution to this Programming Praxis problem.
(define (primes n)
(let* ...
2
votes
2answers
347 views
is Sieve of erathosthens the best algorithm to generate prime numbers from 1 to N?
I was asked this question in an interview.
I implemented an algorithm using sieve of eratosthenes concept and an array.
Is there a better way to go about this question
For those who dont know the ...
2
votes
5answers
2k views
Fast algorithm for finding prime numbers?
First of all - I checked a lot in this forum and I haven't found something fast enough.
I try to make a function that returns me the prime numbers in a specified range.
For example I did this function ...
1
vote
2answers
246 views
Learning algorithms and analysis. Robert Sedgewick
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 ...
0
votes
4answers
168 views
Segmentation Fault in my code
This is a code I submitted at sphere online judge for generating prime numbers but I'm getting a segmentation fault. The objective is to generate prime numbers between the given range m to n (with n > ...
0
votes
4answers
358 views
Sieve of Eratosthenes Algorithm
I did some searching and was not able to find any information regarding this implementation versus every other one I have seen.
function sieve($top)
{
for($i = 11; $i<$top; $i+=2)
{
...