Can someone explain to me an efficient way of finding all the factors of a number in Python (2.7)?
I can create algorithms to do this job, but i think it is poorly coded, and takes too long to execute a result for a large numbers.
|
Can someone explain to me an efficient way of finding all the factors of a number in Python (2.7)? I can create algorithms to do this job, but i think it is poorly coded, and takes too long to execute a result for a large numbers. |
|||||||||
|
This will return all of the factors, very quickly, of a number Why square root as the upper limit?
the The The Edit: |
|||||||||||||
|
|
agf's answer is really quite cool. I wanted to see if I could rewrite it to avoid using
I also tried a version that uses tricky generator functions:
I timed it by computing:
I ran it once to let Python compile it, then ran it under the time(1) command three times and kept the best time.
Note that the itertools version is building a tuple and passing it to flatten_iter(). If I change the code to build a list instead, it slows down slightly:
I believe that the tricky generator functions version is the fastest possible in Python. But it's not really much faster than the reduce version, roughly 4% faster based on my measurements. |
||||
|
|
|
An alternative approach to agf's answer:
|
|||||||||||||
|
|
Further improvement to afg & eryksun's solution. The following piece of code returns a sorted list of all the factors without changing run time asymptotic complexity:
Idea: Instead of using the list.sort() function to get a sorted list which gives nlog(n) complexity; It is much faster to use list.reverse() on l2 which takes O(n) complexity. (That's how python is made.) After l2.reverse(), l2 may be appended to l1 to get the sorted list of factors. Notice, l1 contains i-s which are increasing. l2 contains q-s which are decreasing. Thats the reason behind using the above idea. |
||||
|
be sure to grab the number larger than
|
|||
|
|
How about something as simple as the following list comprehension noting that we do not need to test 1 and the number we are trying to find:
In reference to the use of square root, say we want to find factors of 10. The integer portion of the |
||||
|