Re: [algogeeks] prime factorization algo

2011-09-20 Thread siddharth srivastava
initialise a bit vector till the square root of the number and cancel out the factors of numbers with whom divisibility has been checked (starting from 2) you can use bitvector to implement it. set false for the discarded values. if none remains true (given that you initialise the bit vector with

[algogeeks] prime factorization algo

2011-09-19 Thread Manish Verma
does anybody know the fastest algo for prime factorization of a number??? -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, send email to

Re: [algogeeks] prime factorization algo

2011-09-19 Thread Rahul
how much big number are You tHINKING Rahul On Mon, Sep 19, 2011 at 2:40 PM, Manish Verma jalsa.n.sa...@gmail.com wrote: does anybody know the fastest algo for prime factorization of a number??? -- You received this message because you are subscribed to the Google Groups Algorithm Geeks