I have to write a program to calculate a**b % c where b and c are both very large numbers. If I just use a**b % c, it's really slow. Then I found that the built-in function pow() can do this really fast by calling pow(a, b, c).
I'm curious to know how does Python implement this? Or where could I find the source code file that implement this function?
|
|
|||||||
|
|
If |
||||
|
|
|
You might consider the following two implementations for computing In Python:
In C:
|
|||||||
|
|
Line 1426 of this file shows the Python code that implements math.pow, but basically it boils down to it calling the standard C library which probably has a highly optimized version of that function. Python can be quite slow for intensive number-crunching, but Psyco can give you a quite speed boost, it won't be as good as C code calling the standard library though. |
|||||
|
|
I uses C math libraries for the general case and it's own logic for some of it's concepts like infinity. |
|||
|
|
|
I don't know about python, but if you need fast powers, you can use exponentiation by squaring: http://en.wikipedia.org/wiki/Exponentiation_by_squaring It's a simple recursive method that uses the commutative property of exponents. |
|||
|
|
|
yeah you are very true... http://ubuntuforums.org/showthread.php?t=1444549 this should help you explore further time differences... |
|||
|
|