vote up 2 vote down star
2

I'm trying to understand if the following Python function:

def factorial(i):
    if not hasattr(factorial, 'lstFactorial'):
        factorial.lstFactorial = [None] * 1000
    if factorial.lstFactorial[i] is None:
        iProduct = 1
        for iFactor in xrange(1, i+1):
            iProduct *= iFactor
        factorial.lstFactorial[i] = iProduct
    return factorial.lstFactorial[i]

would produce the same results as the equivalent in C#:

long factorial(long n) 
{ 
   return n <= 1 ? 1 : n * factorial(n-1);
}

for a value of 12 or less.

I know nothing about Python but have just converted some Python code to C#. This was the only function that I didn't fully understand.

flag

74% accept rate
why don't you just try and check ? – Thomas Levesque Oct 28 at 20:46
don't have python installed – Guy Oct 28 at 21:10
Why not install python? It's a small MSI, takes less than 5 mins. What's preventing that? – S.Lott Oct 29 at 10:31
I can see why you're confused. That's some pretty bad Python. It's really badly thought out. – S.Lott Oct 29 at 10:33

6 Answers

vote up 3 vote down check

here is main algorithm

iProduct = 1
for iFactor in xrange(1, i+1):
    iProduct *= iFactor

other code is for caching results.

link|flag
vote up 0 vote down

it will return the same results, but the Python version will probably have better performance, because it memoizes the results

link|flag
vote up 1 vote down

Even without knowing Python, it must be clear to you that the two functions are far from identical. The C# version is calculating the factorial via recursion, whereas the Python one is doing it via iteration (although in a slightly weird way, with some odd memoization/caching going on - I guess in case you want to calculate multiple factorials in the lifetime of a program).

Anyway, since calculating a factorial is a very simple algorithm, it works out the same in both cases.

link|flag
vote up 2 vote down

IANAPG (Python Guru), but it looks to me like the function is creating a static array of 1000 entries, then filling them on an as-needed basis to prevent recalculation. In C++, it'd be something like:

long factorial(int i){
    //Cache array
    static long factorials[1000];
    if (!factorials[i]){ //If not cached, calculate & store
        int product = 1;
        for (int idx = 1; idx <= i + 1; ++idx){
            product *= idx;
        }
        factorials[i] = product;
    }
    return factorials[i]; //Return cached value
}
link|flag
Be careful of the +1. The python xrange(a,b) creates all values including a and b-1. The idea is that xrange returns b-a distinct values. xrange(1,5) returns 4 values: 1, 2, 3, 4. – S.Lott Oct 29 at 10:36
Fair enough - that's why I put the disclaimer up front. I've done a little python hacking, but not much. – Harper Shelby Oct 29 at 14:19
Also, long is not long enough to hold values up to factorial(999). Already factorial(13) will overflow a signed 32-bit integer. – jackem Oct 30 at 8:16
What, you expect me to give it all away for free? :-) – Harper Shelby Nov 2 at 21:25
vote up 1 vote down

It just attaches an attribute called lstFactorial to factorial. This attribute is a list of 1000 values used to cache the results of previous calls.

link|flag
vote up 1 vote down
def factorial(i):
    if not hasattr(factorial, 'lstFactorial'): #program checks whether caching list exists
        factorial.lstFactorial = [None] * 1000 #if so, it creates a list of thousand None elements (it is more or less equivalent to C/C++'s NULL
    if factorial.lstFactorial[i] is None: #prog checks if that factorial has been already calculated
        iProduct = 1 #set result to 1
        for iFactor in xrange(1, i+1): # C's for(iFactor = 1; iFactor <= i+1; iFactor++)
            iProduct *= iFactor #we multiply result times current loop counter
        factorial.lstFactorial[i] = iProduct #and put result in caching list
    return factorial.lstFactorial[i] #after all, we return the result, calculated jest now or obtained from cache

To be honest, it is not the best algorithm, since it uses cache only partially.

The simple, user-friendly factorial function (no caching) would be:

def factorial(i):
    if i == 0 or i == 1:
        return 1
    return i*factorial(i-1)

Of for lazy python programmers, most similiar to that C# example:

f = lambda i: i and i*f(i-1) or 1
link|flag
1  
The problem with the recursive approach (which you may well be aware of, but mentioning this for the benefit of the OP), is that you will exceed the max recursion depth with high enough numbers. (1000 by default in Python.) Even if you used a version that passed an accumulator and did a tail call, you'd hit that limit since Python doesn't have tail call optimization. – Anon Oct 28 at 21:22
Yes, I am aware of that. I should have written it in the answer, simply forgot about it. Sorry, and thanks for the remark. :) – raceCh- Oct 28 at 21:36

Your Answer

Get an OpenID
or

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