How would you write a non-recursive algorithm to compute n!.
|
1
|
|||||||||||
|
|
|
Rewrite the recursive solution as a loop. |
||
|
|
|
|
||||||||
|
|
|
|
||
|
|
|
|
|
|||
|
|
|
Pseudo code
|
||
|
|
|
|
|
|||
|
|
|
|
|
||
|
|
|
|
in pseudocode
|
||
|
|
|
|
|
|||
|
|
|
Unless you have arbitrary-length integers like in Python, I would store the precomputed values of factorial() in an array of about 20 longs, and use the argument n as the index. The rate of growth of n! is rather high, and computing 20! or 21! you'll get an overflow anyway, even on 64-bit machines. |
|||
|
|
|
|
Since an Int32 is going to overflow on anything bigger than 12! anyway, just do:
|
||||||||||
|
|
|
assuming you wanted to be able to deal with some really huge numbers, I would code it as follows. This implementation would be for if you wanted a decent amount of speed for common cases (low numbers), but wanted to be able to handle some super hefty calculations. I would consider this the most complete answer in theory. In practice I doubt you would need to compute such large factorials for anything other than a homework problem
|
||||||
|
|
|
Here's the precomputed function, except actually correct. As been said, 13! overflows, so there is no point in calculating such a small range of values. 64 bit is larger, but I would expect the range to still be rather reasonable.
|
||
|
|
|
|
In the interests of science I ran some profiling on various implementations of algorithms to compute factorials. I created iterative, look up table, and recursive implementations of each in C# and C++. I limited the maximum input value to 12 or less, since 13! is greater than 2^32 (the maximum value capable of being held in a 32-bit int). Then, I ran each function 10 million times, cycling through the possible input values (i.e. incrementing i from 0 to 10 million, using i modulo 13 as the input parameter). Here are the relative run-times for different implementations normalized to the iterative C++ figures:
And, for completeness, here are the relative run-times for implementations using 64-bit integers and allowing input values up to 20:
|
||||||
|
|
|
I would use memoization. That way you can write the method as a recursive call, and still get most of the benefits of a linear implementation. |
||
|
|
|
long fact(int n) { long fact=1; while(n>1) fact*=n--; return fact; } long fact(int n) { for(long fact=1;n>1;n--) fact*=n; return fact; } |
||
|
|
|
|
At run time this is non-recursive. At compile time it is recursive. Run-time performance should be O(1). //Note: many compilers have an upper limit on the number of recursive templates allowed. template struct Factorial { enum { value = N * Factorial::value }; }; template <> struct Factorial<0> { enum { value = 1 }; }; // Factorial<4>::value == 24 // Factorial<0>::value == 1 void foo() { int x = Factorial<4>::value; // == 24 int y = Factorial<0>::value; // == 1 } |
||
|
|
|
|
I love the pythonic solution to this:
|
||
|
|
