Factorial Algorithms in different languages - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T10:13:26Z http://stackoverflow.com/feeds/question/23930 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages 35 Factorial Algorithms in different languages Brad Gilbert 2008-08-23T03:46:32Z 2009-11-18T23:24:43Z <p>I want to see all the different ways you can come up with, for a factorial subroutine, or program. The hope is that anyone can come here and see if they might want to learn a new language.</p> <h2>Ideas:</h2> <ul> <li>Procedural</li> <li>Functional</li> <li>Object Oriented</li> <li>One liners</li> <li>Obfuscated</li> <li>Oddball</li> <li>Bad Code</li> <li><a href="http://en.wikipedia.org/wiki/Polyglot_%28computing%29" rel="nofollow">Polyglot</a></li> </ul> <p>Basically I want to see an example, of different ways of writing an algorithm, and what they would look like in different languages.</p> <p>Please limit it to one example per entry. I will allow you to have more than one example per answer, if you are trying to highlight a specific style, language, or just a well thought out idea that lends itself to being in one post.</p> <p>The only real requirement is it must find the factorial of a given argument, in all languages represented.</p> <h1>Be Creative!</h1> <h2>Recommended Guideline:</h2> <pre> # Language Name: Optional Style type - Optional bullet points Code Goes Here Other informational text goes here </pre> <p>I will ocasionally go along and edit any answer that does not have decent formatting.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/23932#23932 1 Answer by Brad Gilbert for Factorial Algorithms in different languages Brad Gilbert 2008-08-23T03:47:32Z 2009-07-01T18:38:24Z <h1>Perl 6: Functional</h1> <pre><code>multi factorial ( Int $n where { $n &lt;= 0 } ){ return 1; } multi factorial ( Int $n ){ return $n * factorial( $n-1 ); } </code></pre> <p> This will also work:</p> <pre><code>multi factorial(0) { 1 } multi factorial(Int $n) { $n * factorial($n - 1) } </code></pre> <p><em>Check <a href="http://use.perl.org/~JonathanWorthington/journal/39196?from=StackOverflow" rel="nofollow">Jonathan Worthington's</a> journal on <a href="http://use.perl.org" rel="nofollow">use.perl.org</a>, for more information about the last example.</em></p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/23936#23936 2 Answer by Brad Gilbert for Factorial Algorithms in different languages Brad Gilbert 2008-08-23T03:48:58Z 2008-08-23T03:48:58Z <h1>Perl 6:Procedural</h1> <pre><code>sub factorial ( int $n ){ my $result = 1; loop ( ; $n &gt; 0; $n-- ){ $result *= $n; } return $result; } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/23938#23938 0 Answer by jeremy Ruten for Factorial Algorithms in different languages jeremy Ruten 2008-08-23T03:50:32Z 2008-08-23T03:50:32Z <p>C:</p> <p>Edit: Actually C++ I guess, because of the variable declaration in the for loop.</p> <pre><code> int factorial(int x) { int product = 1; for (int i = x; i &gt; 0; i--) { product *= i; } return product; } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/23958#23958 2 Answer by Annan for Factorial Algorithms in different languages Annan 2008-08-23T04:10:43Z 2008-10-14T15:11:34Z <h1>Javascript:</h1> <pre><code>factorial = function( n ) { return n &gt; 0 ? n * factorial( n - 1 ) : 1; } </code></pre> <p>I'm not sure what a Factorial is but that does what the other programs do in javascript.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/23969#23969 9 Answer by olliej for Factorial Algorithms in different languages olliej 2008-08-23T04:20:56Z 2009-01-14T05:52:35Z <p>Haskell:</p> <pre><code>ones = 1 : ones integers = head ones : zipWith (+) integers (tail ones) factorials = head integers : zipWith (*) factorials (tail integers) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/23976#23976 7 Answer by Kyle Cronin for Factorial Algorithms in different languages Kyle Cronin 2008-08-23T04:25:31Z 2008-08-23T15:24:44Z <p><strong>Scheme</strong></p> <p>Here is a simple recursive definition:</p> <pre><code>(define (factorial x) (if (= x 0) 1 (* x (factorial (- x 1))))) </code></pre> <p>In Scheme tail-recursive functions use constant stack space. Here is a version of factorial that is tail-recursive:</p> <pre><code>(define factorial (letrec ((fact (lambda (x accum) (if (= x 0) accum (fact (- x 1) (* accum x)))))) (lambda (x) (fact x 1)))) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/23979#23979 0 Answer by Niyaz for Factorial Algorithms in different languages Niyaz 2008-08-23T04:27:12Z 2008-08-23T04:27:12Z <p>C++</p> <pre><code>factorial(int n) { for(int i=1, f = 1; i&lt;=n; i++) f *= i; return f; } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/23982#23982 5 Answer by Imran for Factorial Algorithms in different languages Imran 2008-08-23T04:32:03Z 2008-08-23T15:24:48Z <p><strong>C/C++</strong>: Procedural</p> <pre><code>unsigned long factorial(int n) { unsigned long factorial = 1; int i; for (i = 2; i &lt;= n; i++) factorial *= i; return factorial; } </code></pre> <p><strong>PHP</strong>: Procedural</p> <pre><code>function factorial($n) { for ($factorial = 1, $i = 2; $i &lt;= $n; $i++) $factorial *= $i; return $factorial; } </code></pre> <p><a href="http://beta.stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages#23979" rel="nofollow">@Niyaz</a>: You didn't specify return type for the function</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/23989#23989 95 Answer by Ed for Factorial Algorithms in different languages Ed 2008-08-23T04:40:15Z 2008-09-02T01:18:50Z <h2>lolcode:</h2> <p>sorry I couldn't resist xD</p> <pre><code>HAI CAN HAS STDIO? I HAS A VAR I HAS A INT I HAS A CHEEZBURGER I HAS A FACTORIALNUM IM IN YR LOOP UP VAR!!1 TIEMZD INT!![CHEEZBURGER] UP FACTORIALNUM!!1 IZ VAR BIGGER THAN FACTORIALNUM? GTFO IM OUTTA YR LOOP U SEEZ INT KTHXBYE </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/24296#24296 6 Answer by Brad Gilbert for Factorial Algorithms in different languages Brad Gilbert 2008-08-23T15:22:08Z 2009-01-30T18:22:29Z <h1><a href="http://www.digitalmars.com/d/2.0/template-comparison.html" rel="nofollow">D Templates: Functional</a></h1> <pre><code>template factorial(int n : 1) { const factorial = 1; } template factorial(int n) { const factorial = n * factorial!(n-1); } </code></pre> <p>or </p> <pre><code>template factorial(int n) { static if(n == 1) const factorial = 1; else const factorial = n * factorial!(n-1); } </code></pre> <p>Used like this:</p> <pre><code>factorial!(5) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/24300#24300 2 Answer by Artur Carvalho for Factorial Algorithms in different languages Artur Carvalho 2008-08-23T15:31:41Z 2009-02-23T01:08:37Z <p><strong>Python:</strong></p> <p>Recursive</p> <pre><code>def fact(x): return (1 if x==0 else x * fact(x-1)) </code></pre> <p>Using iterator</p> <pre><code>import operator def fact(x): return reduce(operator.mul, xrange(1, x+1)) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/24343#24343 2 Answer by John the Statistician for Factorial Algorithms in different languages John the Statistician 2008-08-23T16:27:07Z 2008-08-23T20:16:37Z <p>two of many Mathematica solutions (although ! is built-in and efficient):</p> <pre><code>(* returns pure function *) (FixedPoint[(If[#[[2]]&gt;1,{#[[1]]*#[[2]],#[[2]]-1},#])&amp;,{1,n}][[1]])&amp; (* not using built-in, returns pure function, don't use: might build 1..n list *) (Times @@ Range[#])&amp; </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/24524#24524 1 Answer by Josh Brown for Factorial Algorithms in different languages Josh Brown 2008-08-23T19:27:59Z 2008-08-26T00:19:49Z <p><strong>Java</strong>: functional</p> <pre><code>int factorial(int x) { return x == 0 ? 1 : x * factorial(x-1); } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/27114#27114 3 Answer by John the Statistician for Factorial Algorithms in different languages John the Statistician 2008-08-25T23:32:45Z 2008-08-25T23:32:45Z <p><strong>Mathematica</strong> : using pure recursive functions</p> <pre><code>(If[#&gt;1,# #0[#-1],1])&amp; </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/27142#27142 4 Answer by krujos for Factorial Algorithms in different languages krujos 2008-08-26T00:06:44Z 2008-08-26T00:06:44Z <p><strong>Ruby: functional</strong></p> <pre><code>def factorial(n) return 1 if n == 1 n * factorial(n -1) end </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/27149#27149 3 Answer by Jon Ericson for Factorial Algorithms in different languages Jon Ericson 2008-08-26T00:17:28Z 2008-08-26T00:17:28Z <h1>Lua</h1> <pre><code>function factorial (n) if (n &lt;= 1) then return 1 end return n*factorial(n-1) end </code></pre> <p>And here is a stack overflow caught in the wild:</p> <pre><code>&gt; print (factorial(234132)) stdin:3: stack overflow stack traceback: stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' ... stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:3: in function 'factorial' stdin:1: in main chunk [C]: ? </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/37416#37416 9 Answer by Chris Smith for Factorial Algorithms in different languages Chris Smith 2008-09-01T03:25:13Z 2008-10-14T15:09:02Z <h1>F#: Functional</h1> <h3>Straight forward:</h3> <pre><code>let rec fact x = if x &lt; 0 then failwith "Invalid value." elif x = 0 then 1 else x * fact (x - 1) </code></pre> <h3>Getting fancy:</h3> <pre><code>let fact x = [1 .. x] |&gt; List.fold_left ( * ) 1 </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/37421#37421 1 Answer by Turambar for Factorial Algorithms in different languages Turambar 2008-09-01T03:34:45Z 2008-09-01T03:34:45Z <h1>Haskell: Functional</h1> <pre><code> fact 0 = 1 fact n = n * fact (n-1) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/37427#37427 28 Answer by cdv for Factorial Algorithms in different languages cdv 2008-09-01T03:44:34Z 2008-09-02T03:43:50Z <h1>C++: Template Metaprogramming</h1> <p>Uses the classic enum hack.</p> <pre><code>template&lt;unsigned int n&gt; struct factorial { enum { result = n * factorial&lt;n - 1&gt;::result }; }; template&lt;&gt; struct factorial&lt;0&gt; { enum { result = 1 }; }; </code></pre> <p>Usage.</p> <pre><code>unsigned int x = factorial&lt;4&gt;::result; </code></pre> <p>Factorial is calculated completely at compile time based on the template parameter n. Therefore, factorial&lt;4>::result is a constant once the compiler has done its work.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/37459#37459 1 Answer by 1800 INFORMATION for Factorial Algorithms in different languages 1800 INFORMATION 2008-09-01T04:41:12Z 2008-09-01T04:41:12Z <p>This one not only calculates n!, it is also O(n!). It may have problems if you want to calculate anything "big" though.</p> <pre><code>long f(long n) { long r=1; for (long i=1; i&lt;n; i++) r=r*i; return r; } long factorial(long n) { // iterative implementation should be efficient long result; for (long i=0; i&lt;f(n); i++) result=result+1; return result; } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/37576#37576 10 Answer by cdv for Factorial Algorithms in different languages cdv 2008-09-01T07:42:49Z 2008-10-06T13:26:50Z <h1>x86-64 Assembly: Procedural</h1> <p>You can call this from C (only tested with GCC on linux amd64). Assembly was assembled with nasm.</p> <pre><code>section .text global factorial ; factorial in x86-64 - n is passed in via RDI register ; takes a 64-bit unsigned integer ; returns a 64-bit unsigned integer in RAX register ; C declaration in GCC: ; extern unsigned long long factorial(unsigned long long n); factorial: enter 0,0 ; n is placed in rdi by caller mov rax, 1 ; factorial = 1 mov rcx, 2 ; i = 2 loopstart: cmp rcx, rdi ja loopend mul rcx ; factorial *= i inc rcx jmp loopstart loopend: leave ret </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/37647#37647 2 Answer by Konrad Rudolph for Factorial Algorithms in different languages Konrad Rudolph 2008-09-01T09:16:11Z 2008-09-01T09:16:11Z <h1>Visual Basic: Linq</h1> <pre><code>&lt;Extension()&gt; _ Public Function Product(ByVal xs As IEnumerable(Of Integer)) As Integer Return xs.Aggregate(1, Function(a, b) a * b) End Function Public Function Fact(ByVal n As Integer) As Integer Return Aggregate x In Enumerable.Range(1, n) Into Product() End Function </code></pre> <p>This shows how to use the <code>Aggregate</code> keyword in VB. <strong>C# can't do this</strong> (although C# can of course call the extension method directly).</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/37664#37664 5 Answer by Jeff Hillman for Factorial Algorithms in different languages Jeff Hillman 2008-09-01T09:38:02Z 2008-09-02T03:23:35Z <p>PowerShell</p> <pre><code>function factorial( [int] $n ) { $result = 1; if ( $n -gt 1 ) { $result = $n * ( factorial ( $n - 1 ) ) } $result } </code></pre> <p>Here's a one-liner:</p> <pre><code>$n..1 | % {$result = 1}{$result *= $_}{$result} </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/37736#37736 7 Answer by tef for Factorial Algorithms in different languages tef 2008-09-01T11:00:07Z 2008-10-14T15:18:09Z <h1>Recursive Prolog</h1> <pre><code>fac(0,1). fac(N,X) :- N1 is N -1, fac(N1, T), X is N * T. </code></pre> <h1>Tail Recursive Prolog</h1> <pre><code>fac(0,N,N). fac(X,N,T) :- A is N * X, X1 is X - 1, fac(X1,A,T). fac(N,T) :- fac(N,1,T). </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/37814#37814 1 Answer by Dave Webb for Factorial Algorithms in different languages Dave Webb 2008-09-01T11:59:16Z 2008-09-01T12:04:27Z <p><strong>Bourne Shell: Functional</strong></p> <pre><code>factorial() { if [ $1 -eq 0 ] then echo 1 return fi a=`expr $1 - 1` expr $1 \* `factorial $a` } </code></pre> <p>Also works for Korn Shell and Bourne Again Shell. :-)</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/37847#37847 1 Answer by Alexander Stolz for Factorial Algorithms in different languages Alexander Stolz 2008-09-01T12:17:22Z 2008-09-01T12:17:22Z <p><strong><em>Lisp recursive:</em></strong></p> <pre><code>(defun factorial (x) (if (&lt;= x 1) 1 (* x (factorial (- x 1))))) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/37906#37906 0 Answer by Marius for Factorial Algorithms in different languages Marius 2008-09-01T13:02:56Z 2008-09-01T13:02:56Z <p><strong>JavaScript</strong> Using anonymous functions:</p> <pre><code>var f = function(n){ if(n&gt;1){ return arguments.callee(n-1)*n; } return 1; } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/38369#38369 7 Answer by nlucaroni for Factorial Algorithms in different languages nlucaroni 2008-09-01T20:17:25Z 2008-09-01T21:30:12Z <p>Oddball examples? What about using the gamma function! Since, <code>Gamma n = (n-1)!</code>.</p> <h2>OCaml: Using Gamma</h2> <pre><code>let rec gamma z = let pi = 4.0 *. atan 1.0 in if z &lt; 0.5 then pi /. ((sin (pi*.z)) *. (gamma (1.0 -. z))) else let consts = [| 0.99999999999980993; 676.5203681218851; -1259.1392167224028; 771.32342877765313; -176.61502916214059; 12.507343278686905; -0.13857109526572012; 9.9843695780195716e-6; 1.5056327351493116e-7; |] in let z = z -. 1.0 in let results = Array.fold_right (fun x y -&gt; x +. y) (Array.mapi (fun i x -&gt; if i = 0 then x else x /. (z+.(float i))) consts ) 0.0 in let x = z +. (float (Array.length consts)) -. 1.5 in let final = (sqrt (2.0*.pi)) *. (x ** (z+.0.5)) *. (exp (-.x)) *. result in final let factorial_gamma n = int_of_float (gamma (float (n+1))) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/38399#38399 1 Answer by Tyler for Factorial Algorithms in different languages Tyler 2008-09-01T20:39:57Z 2008-09-02T01:10:45Z <h1>C: One liner, procedural</h1> <pre><code>int f(int n) { for (int i = n - 1; i &gt; 0; n *= i, i--); return n ? n : 1; } </code></pre> <p>I used int's for brevity; use other types to support larger numbers.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/38423#38423 8 Answer by Tyler for Factorial Algorithms in different languages Tyler 2008-09-01T20:58:20Z 2008-09-01T20:58:20Z <h1>BASIC: old school</h1> <pre><code>10 HOME 20 INPUT N 30 LET ANS = 1 40 FOR I = 1 TO N 50 ANS = ANS * I 60 NEXT I 70 PRINT ANS </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/38484#38484 6 Answer by rcreswick for Factorial Algorithms in different languages rcreswick 2008-09-01T21:48:51Z 2008-09-01T21:48:51Z <h1>Java 1.6: recursive, memoized (for subsequent calls)</h1> <pre><code>private static Map&lt;BigInteger, BigInteger&gt; _results = new HashMap() public static BigInteger factorial(BigInteger n){ if (0 &gt;= n.compareTo(BigInteger.ONE)) return BigInteger.ONE.max(n); if (_results.containsKey(n)) return _results.get(n); BigInteger result = factorial(n.subtract(BigInteger.ONE)).multiply(n); _results.put(n, result); return result; } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/38673#38673 2 Answer by grom for Factorial Algorithms in different languages grom 2008-09-02T01:15:44Z 2008-09-02T01:15:44Z <h1>Scheme : Functional - Tail Recursive</h1> <pre><code>(define (factorial n) (define (fac-times n acc) (if (= n 0) acc (fac-times (- n 1) (* acc n)))) (if (&lt; n 0) (display "Wrong argument!") (fac-times n 1))) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/38717#38717 9 Answer by Jeff Hillman for Factorial Algorithms in different languages Jeff Hillman 2008-09-02T02:31:46Z 2008-09-02T02:31:46Z <p>Batch (NT):</p> <pre><code>@echo off set n=%1 set result=1 for /l %%i in (%n%, -1, 1) do ( set /a result=result * %%i ) echo %result% </code></pre> <p>Usage: C:>factorial.bat 15</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/38734#38734 0 Answer by grom for Factorial Algorithms in different languages grom 2008-09-02T02:43:25Z 2008-09-02T02:43:25Z <h1>Haskell : Functional - Tail Recursive</h1> <pre><code>factorial n = factorial' n 1 factorial' 0 a = a factorial' n a = factorial' (n-1) (n*a) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/38781#38781 3 Answer by Apocalisp for Factorial Algorithms in different languages Apocalisp 2008-09-02T03:44:26Z 2008-09-18T22:09:07Z <p>Agda 2: Functional, dependently typed.</p> <pre><code>data Nat = zero | suc (m::Nat) add (m::Nat) (n::Nat) :: Nat = case m of (zero ) -&gt; n (suc p) -&gt; suc (add p n) mul (m::Nat) (n::Nat)::Nat = case m of (zero ) -&gt; zero (suc p) -&gt; add n (mul p n) factorial (n::Nat)::Nat = case n of (zero ) -&gt; suc zero (suc p) -&gt; mul n (factorial p) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/38935#38935 18 Answer by vzczc for Factorial Algorithms in different languages vzczc 2008-09-02T06:39:13Z 2008-09-02T06:39:13Z <p>C# Lookup:</p> <p>Nothing to calculate really, just look it up. To extend it,add another 8 numbers to the table and 64 bit integers are at at their limit. Beyond that, a BigNum class is called for. </p> <pre><code>public static int Factorial(int f) { if (f&lt;0 || f&gt;12) { throw new ArgumentException("Out of range for integer factorial"); } int [] fact={1,1,2,6,24,120,720,5040,40320,362880,3628800, 39916800,479001600}; return fact[f]; } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/41071#41071 27 Answer by Turambar for Factorial Algorithms in different languages Turambar 2008-09-03T02:28:05Z 2008-09-03T02:28:05Z <h1>Whitespace</h1> <pre> &#32;&#32;&#32;&#09;. &#32;. &#32;&#09;. &#09;&#09;. &#32;&#32;&#09;. &#32;&#32;&#32;&#09;. &#09;&#09;&#09;&#32;. &#32;. &#09;&#32;&#09;&#32;. &#09;&#32;&#32;. &#32;&#32;&#32;&#09;. &#32;. &#32;&#32;. &#32;&#09;&#09;&#09;&#32;. &#09;&#09;&#32;&#32;&#09;&#09;&#09;&#32;. &#32;. &#09;. . &#32;&#32;&#09;&#32;. &#32;. . &#09;. &#32;&#09;. . . . </pre> <p>It was hard to get it to show here properly, but now I tried copying it from the preview and it works. You need to input the number and press enter.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/43858#43858 3 Answer by Ralph Rickenbach for Factorial Algorithms in different languages Ralph Rickenbach 2008-09-04T14:22:26Z 2008-10-14T15:11:03Z <h1>Delphi</h1> <pre><code>facts: array[2..12] of integer; function TForm1.calculate(f: integer): integer; begin if f = 1 then Result := f else if f &gt; High(facts) then Result := High(Integer) else if (facts[f] &gt; 0) then Result := facts[f] else begin facts[f] := f * Calculate(f-1); Result := facts[f]; end; end; initialize for i := Low(facts) to High(facts) do facts[i] := 0; </code></pre> <p>After the first time a factorial higher or equal to the desired value has been calculated, this algorithm just returns the factorial in constant time O(1).</p> <p>It takes in account that int32 only can hold up to 12!</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/49300#49300 19 Answer by Jared Updike for Factorial Algorithms in different languages Jared Updike 2008-09-08T08:16:05Z 2009-06-14T06:53:36Z <h1><a href="http://homepages.cwi.nl/~tromp/cl/lazy-k.html" rel="nofollow">Lazy</a> <a href="http://esoteric.sange.fi/essie2/download/" rel="nofollow" title="download it">K</a></h1> <p>Your pure functional programming nightmares come true!</p> <p>The only <a href="http://en.wikipedia.org/wiki/Esoteric_programming_language" rel="nofollow">Esoteric Turing-complete Programming Language</a> that has:</p> <ul> <li>A purely functional foundation, core, and libraries---in fact, here's the complete API: <a href="http://en.wikipedia.org/wiki/SKI_combinator_calculus" rel="nofollow">S K I</a></li> <li>No <a href="http://en.wikipedia.org/wiki/Lambda_calculus" rel="nofollow">lambdas</a> even!</li> <li>No <a href="http://en.wikipedia.org/wiki/Church_encoding#Church_numerals" rel="nofollow">numbers</a> or lists needed or allowed</li> <li>No explicit recursion but yet, <a href="http://mvanier.livejournal.com/2897.html" rel="nofollow" title="Mike Vanier - Y Combinator (Slight Return">allows recursion</a></li> <li>A simple <a href="http://mitpress.mit.edu/sicp/full-text/sicp/book/node71.html" rel="nofollow">infinite lazy stream</a>-based I/O mechanism</li> </ul> <p>Here's the Factorial code in all its parenthetical glory:</p> <pre><code>K(SII(S(K(S(S(KS)(S(K(S(KS)))(S(K(S(KK)))(S(K(S(K(S(K(S(K(S(SI(K(S(K(S(S(KS)K)I)) (S(S(KS)K)(SII(S(S(KS)K)I))))))))K))))))(S(K(S(K(S(SI(K(S(K(S(SI(K(S(K(S(S(KS)K)I)) (S(S(KS)K)(SII(S(S(KS)K)I))(S(S(KS)K))(S(SII)I(S(S(KS)K)I))))))))K))))))) (S(S(KS)K)(K(S(S(KS)K)))))))))(K(S(K(S(S(KS)K)))K))))(SII))II) </code></pre> <p>Features:</p> <ul> <li>No subtraction or conditionals</li> <li>Prints all factorials (if you wait long enough)</li> <li>Uses a second layer of Church numerals to convert the Nth factorial to N! asterisks followed by a newline</li> <li>Uses the <a href="http://en.wikipedia.org/wiki/Fixed_point_combinator#Y_combinator" rel="nofollow">Y combinator</a> for recursion</li> </ul> <p>In case you are interested in trying to understand it, here is the Scheme source code to run through the Lazier compiler:</p> <pre><code>(lazy-def '(fac input) '((Y (lambda (f n a) ((lambda (b) ((cons 10) ((b (cons 42)) (f (1+ n) b)))) (* a n)))) 1 1)) </code></pre> <p>(for suitable definitions of Y, cons, 1, 10, 42, 1+, and *).</p> <p>EDIT:</p> <h1>Lazy K Factorial in Decimal</h1> <p>(<a href="http://www.updike.org/hazy/facdec.lazy" rel="nofollow">10KB of gibberish</a> or else I would paste it). For example, at the Unix prompt:</p> <pre> $ echo "4" | ./lazy facdec.lazy 24 $ echo "5" | ./lazy facdec.lazy 120 </pre> <p>Rather slow for numbers above, say, 5.</p> <p>The code is sort of bloated because we have to include <a href="http://www.updike.org/hazy/factorialDecimal.hazy" rel="nofollow">library code for all of our own primitives</a> (code written in <a href="http://www.updike.org/hazy/" rel="nofollow">Hazy</a>, a lambda calculus interpreter and LC-to-Lazy K compiler written in Haskell).</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/49312#49312 11 Answer by aku for Factorial Algorithms in different languages aku 2008-09-08T08:29:23Z 2008-09-08T08:29:23Z <h1>C#: LINQ</h1> <pre><code> public static int factorial(int n) { return (Enumerable.Range(1, n).Aggregate(1, (previous, value) =&gt; previous * value)); } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/49444#49444 5 Answer by Skizz for Factorial Algorithms in different languages Skizz 2008-09-08T10:40:22Z 2008-09-08T10:40:22Z <p>The problem with most of the above is that they will run out of precision at about 25! (12! with 32 bit ints) or just overflow. Here's a c# implementation to break through these limits!</p> <pre><code>class Number { public Number () { m_number = "0"; } public Number (string value) { m_number = value; } public int this [int column] { get { return column &lt; m_number.Length ? m_number [m_number.Length - column - 1] - '0' : 0; } } public static implicit operator Number (string rhs) { return new Number (rhs); } public static bool operator == (Number lhs, Number rhs) { return lhs.m_number == rhs.m_number; } public static bool operator != (Number lhs, Number rhs) { return lhs.m_number != rhs.m_number; } public override bool Equals (object obj) { return this == (Number) obj; } public override int GetHashCode () { return m_number.GetHashCode (); } public static Number operator + (Number lhs, Number rhs) { StringBuilder result = new StringBuilder (new string ('0', lhs.m_number.Length + rhs.m_number.Length)); int carry = 0; for (int i = 0 ; i &lt; result.Length ; ++i) { int sum = carry + lhs [i] + rhs [i], units = sum % 10; carry = sum / 10; result [result.Length - i - 1] = (char) ('0' + units); } return TrimLeadingZeros (result); } public static Number operator * (Number lhs, Number rhs) { StringBuilder result = new StringBuilder (new string ('0', lhs.m_number.Length + rhs.m_number.Length)); for (int multiplier_index = rhs.m_number.Length - 1 ; multiplier_index &gt;= 0 ; --multiplier_index) { int multiplier = rhs.m_number [multiplier_index] - '0', column = result.Length - rhs.m_number.Length + multiplier_index; for (int i = lhs.m_number.Length - 1 ; i &gt;= 0 ; --i, --column) { int product = (lhs.m_number [i] - '0') * multiplier, units = product % 10, tens = product / 10, hundreds = 0, unit_sum = result [column] - '0' + units; if (unit_sum &gt; 9) { unit_sum -= 10; ++tens; } result [column] = (char) ('0' + unit_sum); int tens_sum = result [column - 1] - '0' + tens; if (tens_sum &gt; 9) { tens_sum -= 10; ++hundreds; } result [column - 1] = (char) ('0' + tens_sum); if (hundreds &gt; 0) { int hundreds_sum = result [column - 2] - '0' + hundreds; result [column - 2] = (char) ('0' + hundreds_sum); } } } return TrimLeadingZeros (result); } public override string ToString () { return m_number; } static string TrimLeadingZeros (StringBuilder number) { while (number [0] == '0' &amp;&amp; number.Length &gt; 1) { number.Remove (0, 1); } return number.ToString (); } string m_number; } static void Main (string [] args) { Number a = new Number ("1"), b = new Number (args [0]), one = new Number ("1"); for (Number c = new Number ("1") ; c != b ; ) { c = c + one; a = a * c; } Console.WriteLine (string.Format ("{0}! = {1}", new object [] { b, a })); } </code></pre> <p>FWIW: 10000! is over 35500 character long.</p> <p>Skizz</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/51952#51952 15 Answer by J.F. Sebastian for Factorial Algorithms in different languages J.F. Sebastian 2008-09-09T13:58:26Z 2008-09-09T13:58:26Z <h1>Python: Functional, One-liner</h1> <pre><code>factorial = lambda n: reduce(lambda x,y: x*y, range(1, n+1), 1) </code></pre> <p>NOTE:</p> <ul> <li><p>It supports big integers. Example:</p> <p>print factorial(100) 93326215443944152681699238856266700490715968264381621468592963895217599993229915\ 608941463976156518286253697920827223758251185210916864000000000000000000000000</p></li> <li><p>It does not work for <em>n &lt; 0</em>.</p></li> </ul> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/51975#51975 40 Answer by Adam Davis for Factorial Algorithms in different languages Adam Davis 2008-09-09T14:09:51Z 2009-06-07T21:10:09Z <p>This is one of the faster algorithms, up to <a href="http://www.google.com/search?q=170!" rel="nofollow">170!</a>. It <a href="http://www.google.com/search?q=171!" rel="nofollow">fails</a> inexplicably beyond 170!, and it's relatively slow for small factorials, but for factorials between <a href="http://www.google.com/search?q=80!" rel="nofollow">80</a> and <a href="http://www.google.com/search?q=170!" rel="nofollow">170</a> it's blazingly fast compared to many algorithms.</p> <pre><code>curl http://www.google.com/search?q=170! </code></pre> <p>There's also an online interface, <a href="http://www.google.com/search?q=42!" rel="nofollow">try it out now!</a> </p> <p>Let me know if you find a bug, or faster implementation for large factorials.</p> <p><hr /></p> <h3>EDIT:</h3> <p>This algorithm is slightly slower, but gives results beyond 170:</p> <pre><code>curl http://www58.wolframalpha.com/input/?i=171! </code></pre> <p>It also simplifies them into various other representations.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/52946#52946 1 Answer by J.F. Sebastian for Factorial Algorithms in different languages J.F. Sebastian 2008-09-09T21:23:54Z 2008-10-19T12:14:01Z <h1>Python, C/C++ (weave): Multi-Language, Procedural</h1> <p>Four implementations:</p> <ul> <li>[weave]</li> <li>[python]</li> <li>[psyco]</li> <li>[list]</li> </ul> <p>Code:</p> <pre><code>#!/usr/bin/env python """ weave_factorial.py """ # [weave] factorial() as extension module in C++ from scipy.weave import ext_tools def build_factorial_ext(): func = ext_tools.ext_function( 'factorial', r""" unsigned long long i = 1; for ( ; n &gt; 1; --n) i *= n; PyObject *o = PyLong_FromUnsignedLongLong(i); return_val = o; Py_XDECREF(o); """, ['n'], {'n': 1}, # effective type declaration {}) mod = ext_tools.ext_module('factorial_ext') mod.add_function(func) mod.compile() try: from factorial_ext import factorial as factorial_weave except ImportError: build_factorial_ext() from factorial_ext import factorial as factorial_weave # [python] pure python procedural factorial() def factorial_python(n): i = 1 while n &gt; 1: i *= n n -= 1 return i # [psyco] factorial() psyco-optimized try: import psyco factorial_psyco = psyco.proxy(factorial_python) except ImportError: pass # [list] list-lookup factorial() factorials = map(factorial_python, range(21)) factorial_list = lambda n: factorials[n] </code></pre> <p><hr /></p> <p>Measure relative performance:</p> <pre><code>$ python -mtimeit \ -s "from weave_factorial import factorial_$label as f" "f($n)" </code></pre> <ol> <li><p>n = 12</p> <ul> <li>[weave] 0.70 &micro;sec (<strong>2</strong>)</li> <li>[python] 3.8 &micro;sec (<strong>9</strong>)</li> <li>[psyco] 1.2 &micro;sec (<strong>3</strong>)</li> <li>[list] 0.43 &micro;sec (<strong>1</strong>)</li> </ul></li> <li><p>n = 20 </p> <ul> <li>[weave] 0.85 &micro;sec (<strong>2</strong>)</li> <li>[python] 9.2 &micro;sec (<strong>21</strong>)</li> <li>[psyco] 4.3 &micro;sec (<strong>10</strong>)</li> <li>[list] 0.43 &micro;sec (<strong>1</strong>)</li> </ul></li> </ol> <p><em>&micro;sec</em> stands for microseconds.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/53810#53810 4 Answer by mweerden for Factorial Algorithms in different languages mweerden 2008-09-10T11:41:36Z 2009-11-18T23:23:27Z <h1>Lambda Calculus</h1> <p>Input and output are Church numerals (i.e. natural number <code>k</code> is <code>\f n. f^k n</code>; so <code>3 = \f n. f (f (f n)))</code></p> <pre><code>(\x. x x) (\y f. f (y y f)) (\y n. n (\x y z. z) (\x y. x) (\f n. f n) (\f. n (y (\f m. n (\g h. h (g f)) (\x. m) (\x. x)) f))) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/58361#58361 2 Answer by Peter Morris for Factorial Algorithms in different languages Peter Morris 2008-09-12T05:29:02Z 2008-10-19T12:23:33Z <h1>Ruby: Iterative</h1> <pre><code>def factorial(n) (1 .. n).inject{|a, b| a*b} end </code></pre> <h1>Ruby: Recursive</h1> <pre><code>def factorial(n) n == 1 ? 1 : n * factorial(n-1) end </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/58368#58368 3 Answer by Cody Brocious for Factorial Algorithms in different languages Cody Brocious 2008-09-12T05:36:03Z 2008-09-12T05:36:03Z <p>Nemerle: Functional</p> <pre><code>def fact(n) { | 0 =&gt; 1 | x =&gt; x * fact(x-1) } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/58433#58433 3 Answer by Hafthor for Factorial Algorithms in different languages Hafthor 2008-09-12T07:11:27Z 2008-09-30T16:14:51Z <pre><code>#Language: T-SQL #Style: Recursive, divide and conquer </code></pre> <p>Just for fun - in T-SQL using a divide and conquer recursive method. Yes, recursive - in SQL without stack overflow.</p> <pre><code>create function factorial(@b int=1, @e int) returns float as begin return case when @b&gt;=@e then @e else convert(float,dbo.factorial(@b,convert(int,@b+(@e-@b)/2))) * convert(float,dbo.factorial(convert(int,@b+1+(@e-@b)/2),@e)) end end </code></pre> <p>call it like this:</p> <pre><code>print dbo.factorial(1,170) -- the 1 being the starting number </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/58594#58594 2 Answer by Hafthor for Factorial Algorithms in different languages Hafthor 2008-09-12T10:07:25Z 2008-09-30T16:17:05Z <pre><code>#Language: T-SQL #Style: Big Numbers </code></pre> <p>Here's another T-SQL solution -- supports big numbers in a most Rube Goldbergian manner. Lots of set-based ops. Tried to keep it uniquely SQL. Horrible performance (400! took 33 seconds on a Dell Latitude D830)</p> <pre><code>create function bigfact(@x varchar(max)) returns varchar(max) as begin declare @c int declare @n table(n int,e int) declare @f table(n int,e int) set @c=0 while @c&lt;len(@x) begin set @c=@c+1 insert @n(n,e) values(convert(int,substring(@x,@c,1)),len(@x)-@c) end -- our current factorial insert @f(n,e) select 1,0 while 1=1 begin declare @p table(n int,e int) delete @p -- product insert @p(n,e) select sum(f.n*n.n), f.e+n.e from @f f cross join @n n group by f.e+n.e -- normalize while 1=1 begin delete @f insert @f(n,e) select sum(n),e from ( select (n % 10) as n,e from @p union all select (n/10) % 10,e+1 from @p union all select (n/100) %10,e+2 from @p union all select (n/1000)%10,e+3 from @p union all select (n/10000) % 10,e+4 from @p union all select (n/100000)% 10,e+5 from @p union all select (n/1000000)%10,e+6 from @p union all select (n/10000000) % 10,e+7 from @p union all select (n/100000000)% 10,e+8 from @p union all select (n/1000000000)%10,e+9 from @p ) f group by e having sum(n)&gt;0 set @c=0 select @c=count(*) from @f where n&gt;9 if @c=0 break delete @p insert @p(n,e) select n,e from @f end -- decrement update @n set n=n-1 where e=0 -- normalize while 1=1 begin declare @e table(e int) delete @e insert @e(e) select e from @n where n&lt;0 if @@rowcount=0 break update @n set n=n+10 where e in (select e from @e) update @n set n=n-1 where e in (select e+1 from @e) end set @c=0 select @c=count(*) from @n where n&gt;0 if @c=0 break end select @c=max(e) from @f set @x='' declare @l varchar(max) while @c&gt;=0 begin set @l='0' select @l=convert(varchar(max),n) from @f where e=@c set @x=@x+@l set @c=@c-1 end return @x end </code></pre> <p>Example:</p> <pre><code>print dbo.bigfact('69') </code></pre> <p>returns:</p> <pre><code>171122452428141311372468338881272839092270544893520369393648040923257279754140647424000000000000000 </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/65432#65432 28 Answer by mamama for Factorial Algorithms in different languages mamama 2008-09-15T18:28:24Z 2008-09-15T18:28:24Z <p>I find the following implementations just hilarious:</p> <p><a href="http://www.willamette.edu/~fruehr/haskell/evolution.html" rel="nofollow">The Evolution of a Haskell Programmer</a></p> <p><a href="http://dis.4chan.org/read/prog/1180084983/" rel="nofollow">Evolution of a Python programmer</a></p> <p>Enjoy!</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/67805#67805 8 Answer by AShelly for Factorial Algorithms in different languages AShelly 2008-09-15T23:04:26Z 2008-10-14T15:20:43Z <h1>ruby recursive</h1> <pre><code>(factorial=Hash.new{|h,k|k*h[k-1]})[1]=1 </code></pre> <p>usage:</p> <pre><code>factorial[5] =&gt; 120 </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/67979#67979 2 Answer by Paul Reiners for Factorial Algorithms in different languages Paul Reiners 2008-09-15T23:38:23Z 2008-09-15T23:38:23Z <h1>Language Name: <a href="http://chuck.cs.princeton.edu/" rel="nofollow">ChucK</a></h1> <pre><code>Moog moog =&gt; dac; 4.0 =&gt; moog.gain; for (0 =&gt; int i; i &lt; 8; i++) { &lt;&lt;&lt; factorial(i) &gt;&gt;&gt;; } fun int factorial(int n) { 1 =&gt; int result; if (n != 0) { n * factorial(n - 1) =&gt; result; } Std.mtof(result % 128) =&gt; moog.freq; 0.25::second =&gt; now; return result; } </code></pre> <p>And it sounds like <a href="http://www.automatous-monk.com/mp3s/misc/Factorial.mp3" rel="nofollow">this</a>. Not terribly interesting, but, hey, it's just a factorial function!</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/71849#71849 9 Answer by TonJ for Factorial Algorithms in different languages TonJ 2008-09-16T12:49:29Z 2009-11-18T23:11:56Z <h1>Brainf*ck</h1> <pre><code>+++++ &gt;+&lt;[[-&gt;&gt;&gt;&gt;+&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;[-&lt;&lt;&lt;&lt;+&gt;&gt;+&gt;&gt;]&lt;&lt;&lt;&lt;&gt;[-&gt;&gt;+&lt;&lt;]&lt;&gt;&gt;&gt;[-&lt;[-&gt;&gt;+&lt;&lt;]&gt;&gt;[-&lt;&lt;+&lt;+&gt;&gt;&gt;]&lt;]&lt;[-]&gt;&lt;&lt;&lt;-] </code></pre> <p>Written by Michael Reitzenstein.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/81669#81669 10 Answer by Christian Davén for Factorial Algorithms in different languages Christian Davén 2008-09-17T10:06:51Z 2008-09-18T08:42:28Z <h1><a href="http://en.wikipedia.org/wiki/APL_(programming_language)" rel="nofollow">APL</a> (oddball/one-liner):</h1> <pre><code>×/⍳X </code></pre> <ol> <li>⍳X expands X into an array of the integers 1..X</li> <li>×/ multiplies every element in the array</li> </ol> <p>Or with the built-in operator:</p> <pre><code>!X </code></pre> <p>Source: <a href="http://www.webber-labs.com/mpl/lectures/ppt-slides/01.ppt" rel="nofollow">http://www.webber-labs.com/mpl/lectures/ppt-slides/01.ppt</a></p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/82369#82369 6 Answer by J.D. Fitz.Gerald for Factorial Algorithms in different languages J.D. Fitz.Gerald 2008-09-17T12:06:29Z 2008-09-17T12:06:29Z <h1>Bash: Recursive</h1> <p>In bash and recursive, but with the added advantage that it deals with each iteration in a new process. The max it can calculate is !20 before overflowing, but you can still run it for big numbers if you don't care about the answer and want your system to fall over ;)</p> <pre><code>#!/bin/bash echo $(($1 * `( [[ $1 -gt 1 ]] && ./$0 $(($1 - 1)) ) || echo 1`)); </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/90589#90589 1 Answer by bentilly for Factorial Algorithms in different languages bentilly 2008-09-18T06:52:23Z 2008-09-18T06:52:23Z <p>Here is an interesting Ruby version. On my laptop it will find 30000! in under a second. (It takes longer for Ruby to format it for printing than to calculate it.) This is significantly faster than the naive solution of just multiplying the numbers in order.</p> <pre><code>def factorial (n) return multiply_range(1, n) end def multiply_range(n, m) if (m &lt; n) return 1 elsif (n == m) return m else i = (n + m) / 2 return multiply_range(n, i) * multiply_range(i+1, m) end end </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/90659#90659 1 Answer by Martin York for Factorial Algorithms in different languages Martin York 2008-09-18T07:13:12Z 2008-09-18T07:13:12Z <p>Simple solutions are the best:</p> <pre><code>#include &lt;stdexcept&gt;; long fact(long f) { static long fact [] = { 1, 1, 2, 6, 24, 120, 720, 5040, 40320, 362880, 3628800, 39916800, 479001600, 1932053504, 1278945280, 2004310016, 2004189184 }; static long max = sizeof(fact)/sizeof(long); if ((f &lt; 0) || (f &gt;= max)) { throw std::range_error("Factorial Range Error"); } return fact[f]; } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/90728#90728 2 Answer by Matthias Benkard for Factorial Algorithms in different languages Matthias Benkard 2008-09-18T07:34:36Z 2008-09-18T07:34:36Z <h1>Common Lisp: Lisp as God intended it to be used (that is, with LOOP)</h1> <pre><code>(defun fact (n) (loop for i from 1 to n for acc = 1 then (* acc i) finally (return acc))) </code></pre> <p>Now, if someone can come up with a version based on FORMAT...</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/90911#90911 2 Answer by Matthias Benkard for Factorial Algorithms in different languages Matthias Benkard 2008-09-18T08:22:39Z 2008-09-18T08:22:39Z <h1>Common Lisp: FORMAT (obfuscated)</h1> <p>Okay, so I'll give it a try myself.</p> <pre><code>(defun format-fact (stream arg colonp atsignp &amp;rest args) (destructuring-bind (n acc) arg (format stream "~[~A~:;~*~/format-fact/~]" (1- n) acc (list (1- n) (* acc n))))) (defun fact (n) (parse-integer (format nil "~/format-fact/" (list n 1)))) </code></pre> <p>There has to be a nicer, even more obscure FORMAT-based implementation. This one is pretty straight-forward and boring, simply using FORMAT as an IF replacement. Obviously, I'm not a FORMAT expert.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/91001#91001 7 Answer by Hugh Allen for Factorial Algorithms in different languages Hugh Allen 2008-09-18T08:44:55Z 2008-09-18T09:12:32Z <h2>Recursively in Inform 7</h2> <p>(it reminds you of COBOL because it's for writing text adventures; proportional font is deliberate):</p> <blockquote> <p>To decide what number is the factorial of (n - a number):<br> &nbsp;&nbsp;&nbsp;&nbsp;if n is zero, decide on one;<br> &nbsp;&nbsp;&nbsp;&nbsp;otherwise decide on the factorial of (n minus one) times n.</p> </blockquote> <p>If you want to actually call this function ("phrase") from a game you need to define an action and grammar rule:</p> <blockquote> <p>"The factorial game" [this must be the first line of the source]</p> <p>There is a room. [there has to be at least one!]</p> <p>Factorialing is an action applying to a number.</p> <p>Understand "factorial [a number]" as factorialing.</p> <p>Carry out factorialing:<br> &nbsp;&nbsp;&nbsp;&nbsp;Let n be the factorial of the number understood;<br> &nbsp;&nbsp;&nbsp;&nbsp;Say "It's [n]".</p> </blockquote> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/91039#91039 1 Answer by Calum for Factorial Algorithms in different languages Calum 2008-09-18T08:54:02Z 2008-09-18T08:54:02Z <h1>Scala: Recursive</h1> <ul> <li>Should compile to being tail recursive. Should!</li> </ul> <p>.</p> <pre><code>def factorial( value: BigInt ): BigInt = value match { case 0 =&gt; 1 case _ =&gt; value * factorial( value - 1 ) } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/91175#91175 1 Answer by Dynite for Factorial Algorithms in different languages Dynite 2008-09-18T09:24:00Z 2008-09-18T09:24:00Z <p>Occam-pi</p> <pre><code>PROC subprocess(MOBILE CHAN INT parent.out!,parent.in?) INT value: SEQ parent.in ? value IF value = 1 SEQ parent.out ! value OTHERWISE INITIAL MOBILE CHAN INT child.in IS MOBILE CHAN INT: INITIAL MOBILE CHAN INT child.out IS MOBILE CHAN INT: FORKING INT newvalue: SEQ FORK subprocess(child.in!,child.out?) child.out ! (value-1) child.in ? newvalue parent.out ! (newalue*value) : PROC main(CHAN BYTE in?,src!,kyb?) INITIAL INT value IS 0: INITIAL MOBILE CHAN INT child.out is MOBILE CHAN INT INITIAL MOBILE CHAN INT child.in is MOBILE CHAN INT SEQ WHILE TRUE SEQ subprocess(child.in!,child.out?) child.out ! value child.in ? value src ! value: value := value + 1 : </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/100199#100199 4 Answer by Hugh Allen for Factorial Algorithms in different languages Hugh Allen 2008-09-19T07:14:59Z 2008-09-22T04:05:19Z <h1>Icon</h1> <h2>Recursive function</h2> <pre><code>procedure factorial(n) return (0&lt;n) * factorial(n-1) | 1 end </code></pre> <p>I've cheated a bit allowing negatives to return 1. If you want it to fail given a negative argument it's slightly less concise:</p> <pre><code> return (0&lt;n) * factorial(n-1) | (n=0 &amp; 1) </code></pre> <p>Then</p> <pre><code>write(factorial(3)) write(factorial(-1)) write(factorial(20)) </code></pre> <p>prints</p> <pre><code>6 2432902008176640000 </code></pre> <h2>Iterative generator</h2> <pre><code>procedure factorials() local f,n f := 1; n := 0 repeat suspend f *:= (n +:= 1) end </code></pre> <p>Then</p> <pre><code>every write(factorials() \ 5) </code></pre> <p>prints</p> <pre><code>1 2 6 24 120 </code></pre> <p>To understand this: evaluation is goal-directed and backtracks on failure. There is no boolean type, and binary operators which would return a boolean in other languages, either fail or return their second argument - with the exception of |, which in a single-value context returns its first argument if it succeeds, otherwise tries its second argument. (in a multiple-value context it returns its first argument <em>then</em> its second argument)</p> <p><code>suspend</code> is like <code>yield</code> in other languages, except that a generator is not explicitly called multiple times to return its results. Instead, <code>every</code> asks its argument for all values but doesn't return anything by default; it's useful with side-effects (in this case I/O).</p> <p><code>\</code> limits the number of values returned by a generator, which in the case of <code>factorials</code> would be infinite.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/106580#106580 0 Answer by Jiří Pospíšil for Factorial Algorithms in different languages Jiří Pospíšil 2008-09-20T00:38:08Z 2008-09-20T00:38:08Z <p><strong>FoxPro:</strong></p> <pre><code>function factorial parameters n return iif( n&gt;0, n*factorial(n-1), 1) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/106621#106621 1 Answer by mbac32768 for Factorial Algorithms in different languages mbac32768 2008-09-20T00:51:23Z 2008-09-20T00:51:23Z <h2>OCaml</h2> <p>Lest anyone believe OCaml and oddball go hand-in-hand, I thought I would provide a sane implementation of factorial.</p> <pre><code># let rec factorial n = if n=0 then 1 else n * factorial(n - 1);; </code></pre> <p>I don't think I made my case very well...</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/114277#114277 2 Answer by fahdshariff for Factorial Algorithms in different languages fahdshariff 2008-09-22T11:08:47Z 2008-09-22T11:08:47Z <p><strong>AWK</strong></p> <pre><code>#!/usr/bin/awk -f { result=1; for(i=$1;i&gt;0;i--){ result=result*i; } print result; } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/114930#114930 1 Answer by Einar for Factorial Algorithms in different languages Einar 2008-09-22T13:44:50Z 2008-09-22T13:51:00Z <p>Genuinely functional Java:</p> <pre><code>public final class Factorial { public static void main(String[] args) { final int n = Integer.valueOf(args[0]); System.out.println("Factorial of " + n + " is " + create(n).apply()); } private static Function create(final int n) { return n == 0 ? new ZeroFactorialFunction() : new NFactorialFunction(n); } interface Function { int apply(); } private static class NFactorialFunction implements Function { private final int n; public NFactorialFunction(final int n) { this.n = n; } @Override public int apply() { return n * Factorial.create(n - 1).apply(); } } private static class ZeroFactorialFunction implements Function { @Override public int apply() { return 1; } } } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/115633#115633 9 Answer by Alnitak for Factorial Algorithms in different languages Alnitak 2008-09-22T15:42:57Z 2008-11-14T09:15:43Z <h1>Erlang: tail recursive</h1> <pre><code>fac(0) -&gt; 1; fac(N) when N &gt; 0 -&gt; fac(N, 1). fac(1, R) -&gt; R; fac(N, R) -&gt; fac(N - 1, R * N). </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/153790#153790 2 Answer by Hafthor for Factorial Algorithms in different languages Hafthor 2008-09-30T16:15:15Z 2008-09-30T16:15:15Z <pre><code>#Language: T-SQL, C# #Style: Custom Aggregate </code></pre> <p>Another crazy way would be to create a custom aggregate and apply it over a temporary table of the integers 1..n.</p> <pre><code>/* ProductAggregate.cs */ using System; using System.Data.SqlTypes; using Microsoft.SqlServer.Server; [Serializable] [SqlUserDefinedAggregate(Format.Native)] public struct product { private SqlDouble accum; public void Init() { accum = 1; } public void Accumulate(SqlDouble value) { accum *= value; } public void Merge(product value) { Accumulate(value.Terminate()); } public SqlDouble Terminate() { return accum; } } </code></pre> <p>add this to sql</p> <pre><code>create assembly ProductAggregate from 'ProductAggregate.dll' with permission_set=safe -- mod path to point to actual dll location on disk. create aggregate product(@a float) returns float external name ProductAggregate.product </code></pre> <p>create the table (there should be a built-in way to do this in SQL -- hmm. a <a href="http://beta.stackoverflow.com/questions/58429/sql-set-based-range" rel="nofollow">question</a> for SO?)</p> <pre><code>select 1 as n into #n union select 2 union select 3 union select 4 union select 5 </code></pre> <p>then finally</p> <pre><code>select dbo.product(n) from #n </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/201631#201631 4 Answer by Chris S for Factorial Algorithms in different languages Chris S 2008-10-14T15:21:11Z 2009-01-30T11:56:09Z <p>The code below is tongue in cheek, however when you consider that the return value is limited to n &lt; 34 for uint32, &lt;65 uint64 before we run out of space for the return value with a uint, <strong>hard coding 33 values isn't that crazy</strong> :)</p> <pre><code>public static int Factorial(int n) { switch (n) { case 1: return 1; case 2: return 2; case 3: return 6; case 4: return 24; default: throw new Exception("Sorry, I can only count to 4"); } } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/201662#201662 0 Answer by milot for Factorial Algorithms in different languages milot 2008-10-14T15:30:58Z 2008-10-14T15:30:58Z <p><strong>C# factorial using recursion in a single line</strong></p> <pre><code>private static int factorial(int n){ if (n == 0)return 1;else return n * factorial(n - 1); } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/215337#215337 13 Answer by nwn for Factorial Algorithms in different languages nwn 2008-10-18T17:55:50Z 2008-10-19T13:42:30Z <h1>Perl6</h1> <pre><code>sub factorial ($n) { [*] 1..$n } </code></pre> <p>I hardly know about Perl6. But I guess this <code>[*]</code> operator is same as Haskell's <code>product</code>.</p> <p>This code runs on <a href="http://pugscode.org/" rel="nofollow">Pugs</a>, and maybe <a href="http://www.parrot.org/" rel="nofollow">Parrot</a> (I didn't check it.)</p> <p><strong>Edit</strong></p> <p>This code also works.</p> <pre><code>sub postfix:&lt;!&gt; ($n) { [*] 1..$n } # This function(?) call like below ... It looks like mathematical notation. say 10!; </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/216448#216448 2 Answer by Justice for Factorial Algorithms in different languages Justice 2008-10-19T13:50:36Z 2008-10-19T13:50:36Z <p>Haskell:</p> <pre><code>factorial n = product [1..n] </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/264821#264821 1 Answer by Francesco for Factorial Algorithms in different languages Francesco 2008-11-05T10:50:17Z 2008-11-05T10:55:17Z <h1><strong>Eiffel</strong></h1> <pre><code> class APPLICATION inherit ARGUMENTS create make feature -- Initialization make is -- Run application. local l_fact: NATURAL_64 do l_fact := factorial(argument(1).to_natural_64) print("Result is: " + l_fact.out) end factorial(n: NATURAL_64): NATURAL_64 is -- require positive_n: n >= 0 do if n = 0 then Result := 1 else Result := n * factorial(n-1) end end end -- class APPLICATION </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/287796#287796 2 Answer by plinth for Factorial Algorithms in different languages plinth 2008-11-13T18:32:46Z 2008-11-13T18:32:46Z <h1>PostScript: Tail Recursive</h1> <pre><code>/fact0 { dup 2 lt { pop } { 2 copy mul 3 1 roll 1 sub exch pop fact0 } ifelse } def /fact { 1 exch fact0 } def </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/287816#287816 2 Answer by CodeSlave for Factorial Algorithms in different languages CodeSlave 2008-11-13T18:41:12Z 2008-11-13T18:47:55Z <h1>befunge-93</h1> <pre><code> v &gt;v"Please enter a number (1-16) : "0&lt; ,: &gt;$*99g1-:99p#v_.25*,@ ^_&amp;:1-99p&gt;:1-:!|10 &lt; ^ &lt; </code></pre> <p>An esoteric language by Chris Pressey of <a href="http://catseye.tc/" rel="nofollow">Cat's Eye Technologies</a>.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/287921#287921 1 Answer by Adam Rosenfield for Factorial Algorithms in different languages Adam Rosenfield 2008-11-13T19:14:53Z 2008-11-13T19:14:53Z <h1>dc</h1> <p>Note: clobbers the <code>e</code> and <code>f</code> registers:</p> <pre><code>[2++d]se[d1-d_1&lt;fd0&gt;e*]sf </code></pre> <p>To use, put the value you want to take the factorial of on the top of the stack and then execute <code>lfx</code> (load the <code>f</code> register and execute it), which then pops the top of the stack and pushes that value's factorial.</p> <p>Explanation: if the top of the stack is <code>x</code>, then the first part makes the top of the stack look like <code>(x, x-1)</code>. If the new top-of-stack is non-negative, it calls factorial recursively, so now the stack is <code>(x, (x-1)!)</code> for <code>x</code> >= 1, or <code>(0, -1)</code> for <code>x</code> = 0. Then, if the new top-of-stack is negative, it executes <code>2++d</code>, which replaces the <code>(0, -1)</code> with <code>(1, 1)</code>. Finally, it multiplies the top two values on the stack.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/288143#288143 1 Answer by tim_yates for Factorial Algorithms in different languages tim_yates 2008-11-13T20:19:22Z 2008-11-13T21:04:53Z <h1><a href="http://www.r-project.org/" rel="nofollow">R</a> - using S4 methods (recursively)</h1> <pre><code>setGeneric( 'fct', function( x ) { standardGeneric( 'fct' ) } ) setMethod( 'fct', 'numeric', function( x ) { lapply( x, function(a) { if( a == 0 ) 1 else a * fact( a - 1 ) } ) } ) </code></pre> <p>Has the advantage that you can pass arrays of numbers in, and it will work them all out...</p> <p>eg:</p> <pre><code>&gt; fct( c( 3, 5, 6 ) ) [[1]] [1] 6 [[2]] [1] 120 [[3]] [1] 720 </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/288232#288232 2 Answer by runrig for Factorial Algorithms in different languages runrig 2008-11-13T20:51:01Z 2008-11-20T22:00:29Z <p><strong>Perl (Y-combinator/Functional)</strong></p> <pre><code>print sub { my $f = shift; sub { my $f1 = shift; $f-&gt;( sub { $f1-&gt;( $f1 )-&gt;( @_ ) } ) }-&gt;( sub { my $f2 = shift; $f-&gt;( sub { $f2-&gt;( $f2 )-&gt;( @_ ) } ) } ) }-&gt;( sub { my $h = shift; sub { my $n = shift; return 1 if $n &lt;=1; return $n * $h-&gt;($n-1); } })-&gt;(5); </code></pre> <p>Everything after 'print' and before the '->(5)' represents the subroutine. The factorial part is in the final "sub {...}". Everything else is to implement the Y-combinator.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/288395#288395 3 Answer by Anonymous for Factorial Algorithms in different languages Anonymous 2008-11-13T21:28:03Z 2008-11-13T21:28:03Z <p>Forth (recursive):</p> <pre> : factorial ( n -- n ) dup 1 > if dup 1 - recurse * else drop 1 then ;</pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/288461#288461 8 Answer by Danko Durbić for Factorial Algorithms in different languages Danko Durbić 2008-11-13T21:48:36Z 2008-11-14T09:49:10Z <h2>XSLT 1.0</h2> <p>The input file, <strong>factorial.xml</strong>:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;?xml-stylesheet href="factorial.xsl" type="text/xsl" ?&gt; &lt;n&gt; 20 &lt;/n&gt; </code></pre> <p>The XSLT file, <strong>factorial.xsl</strong>:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" &gt; &lt;xsl:output method="text"/&gt; &lt;!-- 0! = 1 --&gt; &lt;xsl:template match="text()[. = 0]"&gt; 1 &lt;/xsl:template&gt; &lt;!-- n! = (n-1)! * n--&gt; &lt;xsl:template match="text()[. &gt; 0]"&gt; &lt;xsl:variable name="x"&gt; &lt;xsl:apply-templates select="msxsl:node-set( . - 1 )/text()"/&gt; &lt;/xsl:variable&gt; &lt;xsl:value-of select="$x * ."/&gt; &lt;/xsl:template&gt; &lt;!-- Calculate n! --&gt; &lt;xsl:template match="/n"&gt; &lt;xsl:apply-templates select="text()"/&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>Save both files in the same directory and open <strong>factorial.xml</strong> in IE.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/288596#288596 2 Answer by geocar for Factorial Algorithms in different languages geocar 2008-11-13T22:37:12Z 2008-11-13T22:37:12Z <h1>J</h1> <pre><code> fact=. verb define */ &gt;:@i. y ) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/288688#288688 0 Answer by Chris Dodd for Factorial Algorithms in different languages Chris Dodd 2008-11-13T23:02:04Z 2008-11-13T23:02:04Z <p>Iswim/Lucid:</p> <p><code>factorial = 1 fby factorial * (time+1);</code></p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/288712#288712 0 Answer by bluce for Factorial Algorithms in different languages bluce 2008-11-13T23:13:11Z 2008-11-13T23:13:11Z <p><strong>Python, one liner:</strong></p> <p>A bit more clean than the other python answer. This, and the previous answer, will fail if the input is less than 1.</p> <p>def fact(n): return reduce(int.<strong>mul</strong>,xrange(2,n))</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/288792#288792 3 Answer by Brian Carper for Factorial Algorithms in different languages Brian Carper 2008-11-13T23:45:31Z 2008-11-13T23:45:31Z <h1>Clojure</h1> <h2>Tail-recursive</h2> <pre><code>(defn fact ([n] (fact n 1)) ([n acc] (if (= n 0) acc (recur (- n 1) (* acc n))))) </code></pre> <h2>Short and simple</h2> <pre><code> (defn fact [n] (apply * (range 1 (+ n 1)))) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/288834#288834 1 Answer by Svante for Factorial Algorithms in different languages Svante 2008-11-14T00:04:31Z 2009-02-23T01:59:18Z <h1>Common Lisp</h1> <ul> <li>Call it by name: <code>!</code></li> <li>Tail recursive</li> <li>Common Lisp handles arbitrarily large numbers</li> </ul> <pre> (defun ! (n) "factorial" (labels ((fac (n prod) (if (zerop n) prod (fac (- n 1) (* prod n))))) (fac n 1))) </pre> <p><em>edit</em>: or with accumulator as optional parameter:</p> <pre> (defun ! (n &optional prod) "factorial" (if (zerop n) prod (! (- n 1) (* prod n)))) </pre> <p>or as a reduce, at the cost of a bigger memory footprint and more consing:</p> <pre> (defun range (start end &optional acc) "range from start inclusive to end exclusive, start = start end) (nreverse acc) (range (+ start 1) end (cons start acc)))) (defun ! (n) "factorial" (reduce #'* (range 1 (+ n 1)))) </pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/289244#289244 0 Answer by for Factorial Algorithms in different languages 2008-11-14T04:25:46Z 2008-11-14T04:25:46Z <h1>Factor</h1> <p>USE: math.ranges</p> <p>: factorial ( n -- n! ) 1 [a,b] product ;</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/289853#289853 2 Answer by namin for Factorial Algorithms in different languages namin 2008-11-14T11:41:04Z 2008-11-14T11:57:00Z <p><strong>Scala</strong></p> <p>The factorial can be defined functionally as:</p> <pre><code>def fact(n : Int): BigInt = (1 until (n+1)).foldLeft(1)(_*_) </code></pre> <p>or more traditionally as</p> <pre><code> def fact(n: Int): BigInt = if (n == 0) 1 else fact(n-1) * n </code></pre> <p>and we can make ! a valid method on Ints:</p> <pre><code>object extendBuiltins extends Application { def fact(n: Int): BigInt = if (n == 0) 1 else fact(n-1) * n class Factorizer(n: Int) { def ! = fact(n) } implicit def int2fact(n: Int) = new Factorizer(n) println("10! = " + (10!)) } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/289881#289881 3 Answer by Chris Jefferson for Factorial Algorithms in different languages Chris Jefferson 2008-11-14T11:57:07Z 2008-11-14T11:57:07Z <p>Compile time in C++</p> <pre><code>template&lt;unsigned i&gt; struct factorial { static const unsigned value = i * factorial&lt;i-1&gt;::value; }; template&lt;&gt; struct factorial&lt;0&gt; { static const unsigned value = 1; }; </code></pre> <p>Use in code as:</p> <pre><code>Factorial&lt;5&gt;::value </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/290638#290638 3 Answer by SMYD JOEL for Factorial Algorithms in different languages SMYD JOEL 2008-11-14T16:23:51Z 2009-11-18T23:24:43Z <h1>Haskell</h1> <pre><code>factorial n = product [1..n] </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/290643#290643 4 Answer by SMYD JOEL for Factorial Algorithms in different languages SMYD JOEL 2008-11-14T16:26:12Z 2008-11-15T23:50:37Z <p>Freshman Haskell programmer</p> <pre><code>fac n = if n == 0 then 1 else n * fac (n-1) </code></pre> <p>Sophomore Haskell programmer, at MIT (studied Scheme as a freshman)</p> <pre><code>fac = (\(n) -&gt; (if ((==) n 0) then 1 else ((*) n (fac ((-) n 1))))) </code></pre> <p>Junior Haskell programmer (beginning Peano player)</p> <pre><code>fac 0 = 1 fac (n+1) = (n+1) * fac n </code></pre> <p>Another junior Haskell programmer (read that n+k patterns are “a disgusting part of Haskell” [1] and joined the “Ban n+k patterns”-movement [2])</p> <pre><code>fac 0 = 1 fac n = n * fac (n-1) </code></pre> <p>Senior Haskell programmer (voted for Nixon Buchanan Bush — “leans right”)</p> <pre><code>fac n = foldr (*) 1 [1..n] </code></pre> <p>Another senior Haskell programmer (voted for McGovern Biafra Nader — “leans left”)</p> <pre><code>fac n = foldl (*) 1 [1..n] </code></pre> <p>Yet another senior Haskell programmer (leaned so far right he came back left again!)</p> <pre><code>-- using foldr to simulate foldl fac n = foldr (\x g n -&gt; g (x*n)) id [1..n] 1 </code></pre> <p>Memoizing Haskell programmer (takes Ginkgo Biloba daily)</p> <pre><code>facs = scanl (*) 1 [1..] fac n = facs !! n </code></pre> <p>Pointless (ahem) “Points-free” Haskell programmer (studied at Oxford)</p> <pre><code>fac = foldr (*) 1 . enumFromTo 1 </code></pre> <p>Iterative Haskell programmer (former Pascal programmer)</p> <pre><code>fac n = result (for init next done) where init = (0,1) next (i,m) = (i+1, m * (i+1)) done (i,_) = i==n result (_,m) = m for i n d = until d n i </code></pre> <p>Iterative one-liner Haskell programmer (former APL and C programmer)</p> <pre><code>fac n = snd (until ((&gt;n) . fst) (\(i,m) -&gt; (i+1, i*m)) (1,1)) </code></pre> <p>Accumulating Haskell programmer (building up to a quick climax)</p> <pre><code>facAcc a 0 = a facAcc a n = facAcc (n*a) (n-1) fac = facAcc 1 </code></pre> <p>Continuation-passing Haskell programmer (raised RABBITS in early years, then moved to New Jersey)</p> <pre><code>facCps k 0 = k 1 facCps k n = facCps (k . (n *)) (n-1) fac = facCps id </code></pre> <p>Boy Scout Haskell programmer (likes tying knots; always “reverent,” he belongs to the Church of the Least Fixed-Point [8])</p> <pre><code>y f = f (y f) fac = y (\f n -&gt; if (n==0) then 1 else n * f (n-1)) </code></pre> <p>Combinatory Haskell programmer (eschews variables, if not obfuscation; all this currying’s just a phase, though it seldom hinders)</p> <pre><code>s f g x = f x (g x) k x y = x b f g x = f (g x) c f g x = f x g y f = f (y f) cond p f g x = if p x then f x else g x fac = y (b (cond ((==) 0) (k 1)) (b (s (*)) (c b pred))) </code></pre> <p>List-encoding Haskell programmer (prefers to count in unary)</p> <pre><code>arb = () -- "undefined" is also a good RHS, as is "arb" :) listenc n = replicate n arb listprj f = length . f . listenc listprod xs ys = [ i (x,y) | x&lt;-xs, y&lt;-ys ] where i _ = arb facl [] = listenc 1 facl n@(_:pred) = listprod n (facl pred) fac = listprj facl </code></pre> <p>Interpretive Haskell programmer (never “met a language” he didn't like)</p> <pre><code>-- a dynamically-typed term language data Term = Occ Var | Use Prim | Lit Integer | App Term Term | Abs Var Term | Rec Var Term type Var = String type Prim = String -- a domain of values, including functions data Value = Num Integer | Bool Bool | Fun (Value -&gt; Value) instance Show Value where show (Num n) = show n show (Bool b) = show b show (Fun _) = "" prjFun (Fun f) = f prjFun _ = error "bad function value" prjNum (Num n) = n prjNum _ = error "bad numeric value" prjBool (Bool b) = b prjBool _ = error "bad boolean value" binOp inj f = Fun (\i -&gt; (Fun (\j -&gt; inj (f (prjNum i) (prjNum j))))) -- environments mapping variables to values type Env = [(Var, Value)] getval x env = case lookup x env of Just v -&gt; v Nothing -&gt; error ("no value for " ++ x) -- an environment-based evaluation function eval env (Occ x) = getval x env eval env (Use c) = getval c prims eval env (Lit k) = Num k eval env (App m n) = prjFun (eval env m) (eval env n) eval env (Abs x m) = Fun (\v -&gt; eval ((x,v) : env) m) eval env (Rec x m) = f where f = eval ((x,f) : env) m -- a (fixed) "environment" of language primitives times = binOp Num (*) minus = binOp Num (-) equal = binOp Bool (==) cond = Fun (\b -&gt; Fun (\x -&gt; Fun (\y -&gt; if (prjBool b) then x else y))) prims = [ ("*", times), ("-", minus), ("==", equal), ("if", cond) ] -- a term representing factorial and a "wrapper" for evaluation facTerm = Rec "f" (Abs "n" (App (App (App (Use "if") (App (App (Use "==") (Occ "n")) (Lit 0))) (Lit 1)) (App (App (Use "*") (Occ "n")) (App (Occ "f") (App (App (Use "-") (Occ "n")) (Lit 1)))))) fac n = prjNum (eval [] (App facTerm (Lit n))) </code></pre> <p>Static Haskell programmer (he does it with class, he’s got that fundep Jones! After Thomas Hallgren’s “Fun with Functional Dependencies” [7])</p> <pre><code>-- static Peano constructors and numerals data Zero data Succ n type One = Succ Zero type Two = Succ One type Three = Succ Two type Four = Succ Three -- dynamic representatives for static Peanos zero = undefined :: Zero one = undefined :: One two = undefined :: Two three = undefined :: Three four = undefined :: Four -- addition, a la Prolog class Add a b c | a b -&gt; c where add :: a -&gt; b -&gt; c instance Add Zero b b instance Add a b c =&gt; Add (Succ a) b (Succ c) -- multiplication, a la Prolog class Mul a b c | a b -&gt; c where mul :: a -&gt; b -&gt; c instance Mul Zero b Zero instance (Mul a b c, Add b c d) =&gt; Mul (Succ a) b d -- factorial, a la Prolog class Fac a b | a -&gt; b where fac :: a -&gt; b instance Fac Zero One instance (Fac n k, Mul (Succ n) k m) =&gt; Fac (Succ n) m -- try, for "instance" (sorry): -- -- :t fac four </code></pre> <p>Beginning graduate Haskell programmer (graduate education tends to liberate one from petty concerns about, e.g., the efficiency of hardware-based integers)</p> <pre><code>-- the natural numbers, a la Peano data Nat = Zero | Succ Nat -- iteration and some applications iter z s Zero = z iter z s (Succ n) = s (iter z s n) plus n = iter n Succ mult n = iter Zero (plus n) -- primitive recursion primrec z s Zero = z primrec z s (Succ n) = s n (primrec z s n) -- two versions of factorial fac = snd . iter (one, one) (\(a,b) -&gt; (Succ a, mult a b)) fac' = primrec one (mult . Succ) -- for convenience and testing (try e.g. "fac five") int = iter 0 (1+) instance Show Nat where show = show . int (zero : one : two : three : four : five : _) = iterate Succ Zero </code></pre> <p>Origamist Haskell programmer (always starts out with the “basic Bird fold”)</p> <pre><code>-- (curried, list) fold and an application fold c n [] = n fold c n (x:xs) = c x (fold c n xs) prod = fold (*) 1 -- (curried, boolean-based, list) unfold and an application unfold p f g x = if p x then [] else f x : unfold p f g (g x) downfrom = unfold (==0) id pred -- hylomorphisms, as-is or "unfolded" (ouch! sorry ...) refold c n p f g = fold c n . unfold p f g refold' c n p f g x = if p x then n else c (f x) (refold' c n p f g (g x)) -- several versions of factorial, all (extensionally) equivalent fac = prod . downfrom fac' = refold (*) 1 (==0) id pred fac'' = refold' (*) 1 (==0) id pred </code></pre> <p>Cartesianally-inclined Haskell programmer (prefers Greek food, avoids the spicy Indian stuff; inspired by Lex Augusteijn’s “Sorting Morphisms” [3])</p> <pre><code>-- (product-based, list) catamorphisms and an application cata (n,c) [] = n cata (n,c) (x:xs) = c (x, cata (n,c) xs) mult = uncurry (*) prod = cata (1, mult) -- (co-product-based, list) anamorphisms and an application ana f = either (const []) (cons . pair (id, ana f)) . f cons = uncurry (:) downfrom = ana uncount uncount 0 = Left () uncount n = Right (n, n-1) -- two variations on list hylomorphisms hylo f g = cata g . ana f hylo' f (n,c) = either (const n) (c . pair (id, hylo' f (c,n))) . f pair (f,g) (x,y) = (f x, g y) -- several versions of factorial, all (extensionally) equivalent fac = prod . downfrom fac' = hylo uncount (1, mult) fac'' = hylo' uncount (1, mult) </code></pre> <p>Ph.D. Haskell programmer (ate so many bananas that his eyes bugged out, now he needs new lenses!)</p> <pre><code>-- explicit type recursion based on functors newtype Mu f = Mu (f (Mu f)) deriving Show in x = Mu x out (Mu x) = x -- cata- and ana-morphisms, now for *arbitrary* (regular) base functors cata phi = phi . fmap (cata phi) . out ana psi = in . fmap (ana psi) . psi -- base functor and data type for natural numbers, -- using a curried elimination operator data N b = Zero | Succ b deriving Show instance Functor N where fmap f = nelim Zero (Succ . f) nelim z s Zero = z nelim z s (Succ n) = s n type Nat = Mu N -- conversion to internal numbers, conveniences and applications int = cata (nelim 0 (1+)) instance Show Nat where show = show . int zero = in Zero suck = in . Succ -- pardon my "French" (Prelude conflict) plus n = cata (nelim n suck ) mult n = cata (nelim zero (plus n)) -- base functor and data type for lists data L a b = Nil | Cons a b deriving Show instance Functor (L a) where fmap f = lelim Nil (\a b -&gt; Cons a (f b)) lelim n c Nil = n lelim n c (Cons a b) = c a b type List a = Mu (L a) -- conversion to internal lists, conveniences and applications list = cata (lelim [] (:)) instance Show a =&gt; Show (List a) where show = show . list prod = cata (lelim (suck zero) mult) upto = ana (nelim Nil (diag (Cons . suck)) . out) diag f x = f x x fac = prod . upto </code></pre> <p>Post-doc Haskell programmer (from Uustalu, Vene and Pardo’s “Recursion Schemes from Comonads” [4])</p> <pre><code>-- explicit type recursion with functors and catamorphisms newtype Mu f = In (f (Mu f)) unIn (In x) = x cata phi = phi . fmap (cata phi) . unIn -- base functor and data type for natural numbers, -- using locally-defined "eliminators" data N c = Z | S c instance Functor N where fmap g Z = Z fmap g (S x) = S (g x) type Nat = Mu N zero = In Z suck n = In (S n) add m = cata phi where phi Z = m phi (S f) = suck f mult m = cata phi where phi Z = zero phi (S f) = add m f -- explicit products and their functorial action data Prod e c = Pair c e outl (Pair x y) = x outr (Pair x y) = y fork f g x = Pair (f x) (g x) instance Functor (Prod e) where fmap g = fork (g . outl) outr -- comonads, the categorical "opposite" of monads class Functor n =&gt; Comonad n where extr :: n a -&gt; a dupl :: n a -&gt; n (n a) instance Comonad (Prod e) where extr = outl dupl = fork id outr -- generalized catamorphisms, zygomorphisms and paramorphisms gcata :: (Functor f, Comonad n) =&gt; (forall a. f (n a) -&gt; n (f a)) -&gt; (f (n c) -&gt; c) -&gt; Mu f -&gt; c gcata dist phi = extr . cata (fmap phi . dist . fmap dupl) zygo chi = gcata (fork (fmap outl) (chi . fmap outr)) para :: Functor f =&gt; (f (Prod (Mu f) c) -&gt; c) -&gt; Mu f -&gt; c para = zygo In -- factorial, the *hard* way! fac = para phi where phi Z = suck zero phi (S (Pair f n)) = mult f (suck n) -- for convenience and testing int = cata phi where phi Z = 0 phi (S f) = 1 + f instance Show (Mu N) where show = show . int </code></pre> <p>Tenured professor (teaching Haskell to freshmen)</p> <pre><code>fac n = product [1..n] </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/292898#292898 2 Answer by Adrian for Factorial Algorithms in different languages Adrian 2008-11-15T18:46:13Z 2008-11-15T19:06:16Z <h2>Smalltalk, using a closure</h2> <pre><code> fac := [ :x | x = 0 ifTrue: [ 1 ] ifFalse: [ x * (fac value: x -1) ]]. Transcript show: (fac value: 24) "-&gt; 620448401733239439360000" </code></pre> <p>NB does not work in Squeak, requires full closures.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/292915#292915 2 Answer by Adrian for Factorial Algorithms in different languages Adrian 2008-11-15T19:03:06Z 2008-11-15T19:03:06Z <h2>Smalltalk, memoized</h2> <p>Define a method on Dictionary</p> <pre><code>Dictionary &gt;&gt; fac: x ^self at: x ifAbsentPut: [ x * (self fac: x - 1) ] </code></pre> <p>usage</p> <pre><code> d := Dictionary new. d at: 0 put: 1. d fac: 24 </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/292921#292921 2 Answer by Adrian for Factorial Algorithms in different languages Adrian 2008-11-15T19:05:42Z 2008-11-15T19:05:42Z <h2>Smalltalk, 1-Liner</h2> <pre><code>(1 to: 24) inject: 1 into: [ :a :b | a * b ] </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/311784#311784 3 Answer by Tony Lee for Factorial Algorithms in different languages Tony Lee 2008-11-22T21:07:55Z 2008-12-02T16:36:30Z <p>Java Script: Creative method using "interview question" counting bits fnc.</p> <pre><code>function nu(x) { var r=0 while( x ) { x &amp;= (~x+1)^x r++ } return r } function fac(n) { var r= Math.pow(2,n-nu(n)) for ( var i=3 ; i &lt;= n ; i+= 2 ) r *= Math.pow(i,Math.floor(Math.log(n/i)/Math.LN2)+1) return r } </code></pre> <p>Works up to 21! then Chrome switches to scientific notation. Inspiration thanks lack of sleep and Knuth, et al's "concrete mathematics".</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/311826#311826 4 Answer by Johannes Schaub - litb for Factorial Algorithms in different languages Johannes Schaub - litb 2008-11-22T21:53:38Z 2008-11-22T21:53:38Z <p>Nothing is as fast as <strong>bash</strong> &amp; <strong>bc</strong>:</p> <pre><code>function fac { seq $1 | paste -sd* | bc; } $ fac 42 1405006117752879898543142606244511569936384000000000 $ </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/383858#383858 1 Answer by Clayton for Factorial Algorithms in different languages Clayton 2008-12-20T23:08:02Z 2008-12-20T23:08:02Z <p>In MUMPS:</p> <pre><code>fact(N) N F,I S F=1 F I=2:1:N S F=F*I QUIT F </code></pre> <p>Or, if you're a fan of indirection:</p> <pre><code>fact(N) N F,I S F=1 F I=2:1:N S F=F_"*"_I QUIT @F </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/385519#385519 2 Answer by dreeves for Factorial Algorithms in different languages dreeves 2008-12-22T04:02:44Z 2008-12-22T04:02:44Z <h1>Mathematica: non-recursive</h1> <pre><code>fact[n_] := Times @@ Range[n] </code></pre> <p>Which is syntactic sugar for <code>Apply[Times, Range[n]]</code>. I think that's the best way to do it, not counting the built-in <code>n!</code>, of course. Note that that automatically uses bignums.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/393925#393925 2 Answer by Nicolas Martyanoff for Factorial Algorithms in different languages Nicolas Martyanoff 2008-12-26T16:05:09Z 2008-12-26T20:38:05Z <p>Common Lisp version:</p> <pre><code>(defun ! (n) (reduce #'* (loop for i from 2 below (+ n 1) collect i))) </code></pre> <p>Seems to be quite fast.</p> <pre><code>* (! 42) 1405006117752879898543142606244511569936384000000000 </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/426478#426478 0 Answer by Pål GD for Factorial Algorithms in different languages Pål GD 2009-01-08T23:29:05Z 2009-01-08T23:29:05Z <p>Common Lisp, since noone has commited that yet:</p> <pre><code>(defun factorial (n) (if (&lt;= n 1) 1 (* n (factorial (1- n))))) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/432010#432010 3 Answer by A. Rex for Factorial Algorithms in different languages A. Rex 2009-01-11T00:10:24Z 2009-01-11T00:16:14Z <h1>Brainfuck: with bignum support!</h1> <p>Accepts as input a non-negative integer followed by newline, and outputs the corresponding factorial followed by newline.</p> <pre><code>&gt;&gt;&gt;&gt;,----------[&gt;&gt;&gt;&gt;,----------]&gt;&gt;&gt;&gt;++&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;[&gt;++++++[&lt;---- --&gt;-]&lt;-&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;[[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]&lt;-&gt;+&lt;[&gt;&gt;&gt;&gt;+&lt;&lt;&lt;-&lt;[-]]&gt;[-] &gt;&gt;]&gt;[-&lt;&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;[[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]&gt;&gt;]&gt;&gt;&gt;&gt;[-[&gt;+&lt;-]+&gt;&gt;&gt; &gt;]&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;]&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;&gt;[&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&gt;&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[[&gt;&gt;&gt;&gt;+&lt;&lt; &lt;&lt;-]&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;+&lt;&lt;&lt;&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;-[&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&gt;&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[&gt;&gt;&gt; +&lt;&lt;&lt;-]&gt;&gt;&gt;[&lt;&lt;&lt;+&gt;&gt;+&gt;-]&lt;-[&gt;&gt;+&lt;&lt;[-]]&lt;&lt;[&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;[&gt;[&gt;+&lt;-]&gt;[&lt;&lt;+&gt;+&gt; -]&lt;&lt;[&gt;&gt;&gt;+&lt;&lt;&lt;-]&gt;&gt;&gt;[&lt;&lt;&lt;+&gt;&gt;+&gt;-]&lt;-&gt;+++++++++[-&lt;[-[&gt;&gt;&gt;&gt;+&lt;&lt;&lt;&lt;-]]&gt;&gt; &gt;&gt;[&lt;&lt;&lt;&lt;+&gt;&gt;&gt;&gt;-]&lt;&lt;&lt;]&lt;[&gt;&gt;+&lt;&lt;&lt;&lt;[-]&gt;&gt;[&lt;&lt;+&gt;&gt;-]]&gt;&gt;]&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;]&lt;&lt;&lt;[&lt;&lt; &lt;&lt;]&gt;&gt;&gt;&gt;-]&gt;&gt;&gt;&gt;]&gt;&gt;&gt;[&gt;[-]&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]&lt;-&gt;+&lt;[&gt;-&lt;[- ]]&gt;[-&lt;&lt;-&lt;&lt;&lt;&lt;[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]&lt;-&gt;+&lt;[&gt;-&lt;[-]]&gt;]&lt;&lt;[&lt;&lt;&lt;&lt;]&lt;&lt;&lt;&lt;-[ &gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]+&lt;[&gt;-&lt;[-]]&gt;[-&lt;&lt;++++++++++&lt;&lt;&lt;&lt;-[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt; &lt;+&gt;+&gt;-]+&lt;[&gt;-&lt;[-]]&gt;]&lt;&lt;[&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;[[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]&lt;-&gt;+&lt;[&gt;&gt;&gt; &gt;+&lt;&lt;&lt;-&lt;[-]]&gt;[-]&gt;&gt;]&gt;]&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[&gt;+++++++[&lt;+++++++&gt;-]&lt;--.&lt;&lt; &lt;&lt;]++++++++++. </code></pre> <p>Unlike the brainf*ck answer posted earlier, this <em>does not</em> overflow any memory locations. (That implementation put n! in a single memory location, effectively limiting it to n less than 6 under standard bf rules.) This program will output n! for any value of n, limited only by time and memory (or bf implementation). For example, using Urban Muller's compiler on my machine, it takes 12 seconds to compute 1000! I think that's pretty good, considering the program can only move left/right and increment/decrement by one.</p> <p>Believe it or not, this is the first bf program I've written; it took about 10 hours, which were mostly spent debugging. Unfortunately, I later found out that Daniel B Cristofani has written a <a href="http://www.hevanet.com/cristofd/brainfuck/factorial.b" rel="nofollow">factorial generator</a>, which just outputs ever-larger factorials, never terminating:</p> <pre><code>&gt;++++++++++&gt;&gt;&gt;+&gt;+[&gt;&gt;&gt;+[-[&lt;&lt;&lt;&lt;&lt;[+&lt;&lt;&lt;&lt;&lt;]&gt;&gt;[[-]&gt;[&lt;&lt;+&gt;+&gt;-]&lt;[&gt;+&lt;- ]&lt;[&gt;+&lt;-[&gt;+&lt;-[&gt;+&lt;-[&gt;+&lt;-[&gt;+&lt;-[&gt;+&lt;-[&gt;+&lt;-[&gt;+&lt;-[&gt;+&lt;-[&gt;[-]&gt;&gt;&gt;&gt;+&gt;+&lt; &lt;&lt;&lt;&lt;&lt;-[&gt;+&lt;-]]]]]]]]]]]&gt;[&lt;+&gt;-]+&gt;&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;&gt;&gt;&gt;[&gt;&gt;&gt;&gt; &gt;]++[-&lt;&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;&gt;&gt;-]+&gt;&gt;&gt;&gt;&gt;]&lt;[&gt;++&lt;-]&lt;&lt;&lt;&lt;[&lt;[&gt;+&lt;-]&lt;&lt;&lt;&lt;]&gt;&gt;[-&gt;[-] ++++++[&lt;++++++++&gt;-]&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;&lt;[&lt;[&gt;+&gt;+&lt;&lt;-]&gt;.&lt;&lt;&lt;&lt;&lt;]&gt;.&gt;&gt;&gt;&gt;] </code></pre> <p>His program is much shorter, but he's practically a professional bf golfer.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/441229#441229 119 Answer by A. Rex for Factorial Algorithms in different languages A. Rex 2009-01-13T23:02:32Z 2009-10-19T11:06:27Z <h1>Polyglot: 5 languages, all using bignums</h1> <p>So, I wrote a polyglot which works in the three languages I often write in, as well as one from my other answer to this question and one I just learned today. It's a standalone program, which reads a single line containing a nonnegative integer and prints a single line containing its factorial. Bignums are used in all languages, so the maximum computable factorial depends only on your computer's resources.</p> <ul> <li><b>Perl</b>: uses built-in bignum package. Run with <code>perl FILENAME</code>.</li> <li><b>Haskell</b>: uses built-in bignums. Run with <code>runhugs FILENAME</code> or your favorite compiler's equivalent.</li> <li><b>C++</b>: requires GMP for bignum support. To compile with g++, use <code>g++ -lgmpxx -lgmp -x c++ FILENAME</code> to link against the right libraries. After compiling, run <code>./a.out</code>. Or use your favorite compiler's equivalent.</li> <li><b>brainf*ck</b>: I wrote some bignum support in <a href="http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/432010#432010">this post</a>. Using <a href="http://aminet.net/package.php?package=dev/lang/brainfuck-2.lha" rel="nofollow">Muller's classic distribution</a>, compile with <code>bf &lt; FILENAME &gt; EXECUTABLE</code>. Make the output executable and run it. Or use your favorite distribution.</li> <li><b>Whitespace</b>: uses built-in bignum support. Run with <code>wspace FILENAME</code>.</li> </ul> <p><i>Edit:</i> added Whitespace as a fifth language. Incidentally, do <em>not</em> wrap the code with <code>&lt;code&gt;</code> tags; it breaks the Whitespace. Also, the code looks much nicer in fixed-width.</p> <pre>char&#32;//#&#32;b=0+0{-&#32;|0*/;&#32;#&gt;&gt;&gt;&gt;,----------[&gt;&gt;&gt;&gt;,-------- #define&#09;a/*#--]&gt;&gt;&gt;&gt;++&lt;&lt;&lt;&lt;&lt;&lt;&lt;&lt;[&gt;++++++[&lt;------&gt;-]&lt;-&lt;&lt;&lt; #Perl&#09;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&#09;&#32;&lt;&gt;&#32;&lt;&gt;&#32;&lt;&lt;]&gt;&gt;&gt;&gt;[[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]&lt;-&gt; #C++&#09;--&gt;&lt;&gt;&lt;&gt;&#09;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&#09;&gt;&#32;&lt;&#32;&gt;&#32;&lt;&#09;+&lt;[&gt;&gt;&gt;&gt;+&lt;&lt;&lt;-&lt;[-]]&gt;[-] #Haskell&#32;&gt;&gt;]&gt;[-&lt;&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;[[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]&gt;&gt;] #Whitespace&#09;&gt;&gt;&gt;&gt;[-[&gt;+&lt;-]+&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;]&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt; #brainf*ck&#32;&gt;&#32;&lt;&#32;]&gt;&gt;&gt;&gt;&gt;[&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&gt;&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[[&gt;&gt;&gt;&gt;*/ exp;&#32;;//;#+&lt;&lt;&lt;&lt;-]&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;+&lt;&lt;&lt;&lt;&lt;&lt;&lt;[&lt;&lt;&lt;&lt;][.POLYGLOT^5. #include&#32;&lt;gmpxx.h&gt;//]&gt;&gt;&gt;&gt;-[&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&gt;&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[&gt;&gt; #define&#09;eval&#32;int&#09;main()//&gt;+&lt;&lt;&lt;-]&gt;&gt;&gt;[&lt;&lt;&lt;+&gt;&gt;+&gt;-&gt; #include&#32;&lt;iostream&gt;//&lt;]&lt;-[&gt;&gt;+&lt;&lt;[-]]&lt;&lt;[&lt;&lt;&lt;&lt;]&gt;&gt;&gt;&gt;[&gt;[&gt;&gt;&gt; #define&#09;print&#32;std::cout&#09;&lt;&lt;&#32;//&#32;&gt;&#09;&lt;+&lt;-]&gt;[&lt;&lt;+&gt;+&gt;-]&lt;&lt;[&gt;&gt;&gt; #define&#09;z&#32;std::cin&gt;&gt;//&lt;&lt;&#32;+&lt;&lt;&lt;-]&gt;&gt;&gt;[&lt;&lt;&lt;+&gt;&gt;+&gt;-]&lt;-&gt;+++++ #define&#32;c/*++++[-&lt;[-[&gt;&gt;&gt;&gt;+&lt;&lt;&lt;&lt;-]]&gt;&gt;&gt;&gt;[&lt;&lt;&lt;&lt;+&gt;&gt;&gt;&gt;-]&lt;&lt;*/ #define&#09;abs&#32;int&#32;$n&#32;//&gt;&lt;&#09;&lt;]&lt;[&gt;&gt;+&lt;&lt;&lt;&lt;[-]&gt;&gt;[&lt;&lt;+&gt;&gt;-]]&gt;&gt;]&lt; #define&#09;uc&#32;mpz_class&#32;fact(int&#09;$n){/*&lt;&lt;&lt;[&lt;&lt;&lt;&lt;]&lt;&lt;&lt;[&lt;&lt; use&#32;bignum;sub#&lt;&lt;]&gt;&gt;&gt;&gt;-]&gt;&gt;&gt;&gt;]&gt;&gt;&gt;[&gt;[-]&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[&gt;&gt;+&lt;&lt;-] z{$_[0+0]=readline(*STDIN);}sub&#32;fact{my($n)=shift;#&gt;&gt; #[&lt;&lt;+&gt;+&gt;-]&lt;-&gt;+&lt;[&gt;-&lt;[-]]&gt;[-&lt;&lt;-&lt;&lt;&lt;&lt;[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;+*/ uc;if($n==0){return&#32;1;}return&#32;$n*fact($n-1);&#09;}//;# eval{abs;z($n);print&#32;fact($n);print("\n")/*2;};#-]&lt;-&gt; '+&lt;[&gt;-&lt;[-]]&gt;]&lt;&lt;[&lt;&lt;&lt;&lt;]&lt;&lt;&lt;&lt;-[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-]+&lt;[&gt;-+++ -}--&#09;&lt;[-]]&gt;[-&lt;&lt;++++++++++&lt;&lt;&lt;&lt;-[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+&gt;-++ fact&#32;0&#09;=&#32;1&#32;--&#32;&gt;&lt;&gt;&lt;&gt;&lt;&gt;&lt;&#09;&gt;&#32;&lt;&gt;&lt;&gt;&lt;&#09;]+&lt;[&gt;-&lt;[-]]&gt;]&lt;&lt;[&lt;&lt;+&#32;+ fact&#09;n=n*fact(n-1){-&lt;&lt;]&gt;&gt;&gt;&gt;[[&gt;&gt;+&lt;&lt;-]&gt;&gt;[&lt;&lt;+&gt;+++&gt;+-} main=do{n&lt;-readLn;print(fact&#32;n)}--&#32;+&gt;-]&lt;-&gt;+&lt;[&gt;&gt;&gt;&gt;+&lt;&lt;+ {-x&lt;-&lt;[-]]&gt;[-]&gt;&gt;]&gt;]&gt;&gt;&gt;[&gt;&gt;&gt;&gt;]&lt;&lt;&lt;&lt;[&gt;+++++++[&lt;+++++++&gt;-] &lt;--.&lt;&lt;&lt;&lt;]+written+by+++A+Rex+++2009+.';#+++x-}--x*/;} </pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/450128#450128 1 Answer by vyger for Factorial Algorithms in different languages vyger 2009-01-16T11:24:35Z 2009-01-18T10:06:29Z <p><strong>ActionScript: Procedural/OOP</strong></p> <pre><code>function f(n) { var result = n&gt;1 ? arguments.callee(n-1)*n : 1; return result; } // function call f(3); </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/514922#514922 0 Answer by Phil for Factorial Algorithms in different languages Phil 2009-02-05T07:32:08Z 2009-02-05T07:32:08Z <h1>Common Lisp</h1> <p>I'm fairly sure this could be more effieicnet. It is my first lisp function other than "hello, world" and typing in the example code in the third chapter. <em>Practical Common Lisp</em> is a great text. This function does seem to handle large factorials well.</p> <pre><code>(defun factorial (x) (if (&lt; x 2) (return-from factorial (print 1))) (let ((tempx 1) (ans 1)) (loop until (equalp x tempx) do (incf tempx) (setf ans (* tempx ans))) (list ans))) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/546268#546268 2 Answer by stevenvh for Factorial Algorithms in different languages stevenvh 2009-02-13T15:02:49Z 2009-02-13T15:02:49Z <h1>Delphi iterative</h1> <p>While recursion can be the only decent solution to a problem, for factorials it is not. To describe it, yes. To program it, no. Iteration is cheapest.</p> <p>This function calculates factorials for somewhat larger arguments.</p> <pre><code>function Factorial(aNumber: Int64): String; var F: Double; begin F := 0; while aNumber &gt; 1 do begin F := F + log10(aNumber); dec(aNumber); end; Result := FloatToStr(Power(10, Frac(F))) + ' * 10^' + IntToStr(Trunc(F)); end; </code></pre> <p>1000000! = 8.2639327850046 * 10^5565708</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/576331#576331 1 Answer by TokenMacGuy for Factorial Algorithms in different languages TokenMacGuy 2009-02-23T02:01:41Z 2009-02-23T02:01:41Z <p>Hmm... no TCL</p> <pre><code>proc factorial {n} { if { $n == 0 } { return 1 } return [expr {$n*[factorial [expr {$n-1}]]}] } puts [factorial 6] </code></pre> <p>But of course that doesn't work for a damn for large values of n.... we can do better with tcllib!</p> <pre><code>package require math::bignum proc factorial {n} { if { $n == 0 } { return 1 } return [ ::math::bignum::tostr [ ::math::bignum::mul [ ::math::bignum::fromstr $n] [ ::math::bignum::fromstr [ factorial [expr {$n-1} ] ]]]] } puts [factorial 60] </code></pre> <p>Look at all those ]'s at the end. This is practically LISP!</p> <p>I'll leave the version for values of n>2^32 as an excersize for the reader</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/576336#576336 2 Answer by mweiss for Factorial Algorithms in different languages mweiss 2009-02-23T02:05:25Z 2009-02-23T02:05:25Z <h1>Logo</h1> <pre><code>? to factorial :n &gt; ifelse :n = 0 [output 1] [output :n * factorial :n - 1] &gt; end </code></pre> <p>And to invoke:</p> <pre><code>? print factorial 5 120 </code></pre> <p>This is using the UCBLogo dialect of logo.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/673795#673795 1 Answer by jfklein for Factorial Algorithms in different languages jfklein 2009-03-23T15:19:24Z 2009-03-23T15:19:24Z <h1>Mathematica, Memoized</h1> <pre><code>f[n_ /; n &lt; 2] := 1 f[n_] := (f[n] = n*f[n - 1]) </code></pre> <p>Mathematica supports n! natively, but this shows how to make definitions on the fly. When you execute f[2], this code will make a definition f[2]=2 which will subsequently be executed no differently than if you'd hard-coded it; no need for an internal data structure; you just use the language's own function definition machinery.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/690619#690619 1 Answer by drjros for Factorial Algorithms in different languages drjros 2009-03-27T17:03:42Z 2009-03-27T17:03:42Z <p><strong>Lisp : tail-recursive</strong></p> <pre><code>(defun factorial(x) (labels((f (x acc) (if (&gt; x 1) (f (1- x)(* x acc)) acc))) (f x 1))) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/827102#827102 2 Answer by fishlips for Factorial Algorithms in different languages fishlips 2009-05-05T21:58:02Z 2009-05-05T21:58:02Z <h2>Agda2</h2> <p>It is Agda2, using the very nice Agda2 syntax.</p> <pre><code>module fac where data Nat : Set where -- Peano numbers zero : Nat suc : Nat -&gt; Nat {-# BUILTIN NATURAL Nat #-} {-# BUILTIN SUC suc #-} {-# BUILTIN ZERO zero #-} infixl 10 _+_ -- Addition over Peano numbers _+_ : Nat -&gt; Nat -&gt; Nat zero + n = n (suc n) + m = suc (n + m) infixl 20 _*_ -- Multiplication over Peano numbers _*_ : Nat -&gt; Nat -&gt; Nat zero * n = zero n * zero = zero (suc n) * (suc m) = suc n + (suc n * m) _! : Nat -&gt; Nat -- Factorial function, syntax: "x !" zero ! = suc zero (suc n) ! = (suc n) * (n !) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/827173#827173 1 Answer by Daniel Huckstep for Factorial Algorithms in different languages Daniel Huckstep 2009-05-05T22:20:58Z 2009-05-05T22:20:58Z <p>Another ruby one.</p> <pre><code>class Integer def fact return 1 if self.zero? (1..self).to_a.inject(:*) end end</code></pre> <p>This works if to_proc is supported on symbols.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/831961#831961 2 Answer by ijw for Factorial Algorithms in different languages ijw 2009-05-06T21:52:27Z 2009-05-06T21:52:27Z <p>Perl, pessimal:</p> <pre><code># Because there are just so many other ways to get programs wrong... use strict; use warnings; sub factorial { my ($x)=@_; for(my $f=1;;$f++) { my $tmp=$f; foreach my $g (1..$x) { $tmp/=$g; } return $f if $tmp == 1; } } </code></pre> <p>I trust I get extra points for not using the '*' operator...</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/992379#992379 0 Answer by Gregory Higley for Factorial Algorithms in different languages Gregory Higley 2009-06-14T07:41:31Z 2009-06-14T07:41:31Z <h1>REBOL</h1> <p>Math is <em>definitely</em> not one of REBOL's strong points, since it lacks arbitrary precision integers. For the sake of completeness, I thought I'd add it anyway.</p> <p>Here's a standard, na&iuml;ve recursive implementation:</p> <pre>fac: func [ [catch] n [integer!] ] [ if n &lt; 0 [ throw make error! "Hey dummy, your argument was less than 0!" ] either n = 0 [ 1 ] [ n * fac (n - 1) ] ]</pre> <p>And that's about it. Move along, folks, nothing to see here ... :)</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/1244406#1244406 1 Answer by Niko for Factorial Algorithms in different languages Niko 2009-08-07T12:16:32Z 2009-08-07T13:02:50Z <p>Here's my proposal. Runs in Mathematica, works fine:</p> <pre><code>gen[f_, n_] := Module[{id = -1, val = Table[Null, {n}], visit}, visit[k_] := Module[{t}, id++; If[k != 0, val[[k]] = id]; If[id == n, f[val]]; Do[If[val[[t]] == Null, visit[t]], {t, 1, n}]; id--; val[[k]] = Null;]; visit[0]; ] Factorial[n_] := Module[{res=0}, gen[res++&amp;, n]; res] </code></pre> <p><strong>Update</strong> Ok, here's how it works: the visit function is from Sedgewick's Algorithm book, it "visits" all permutations of length n. Upon the visit, it calls function f with the permutation as an argument. </p> <p>So, Factorial enumerates all permutations of length n, and for each permutation the counter res is increased, thus computing n! in O(n+1)! time.</p> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/1244623#1244623 0 Answer by Kiwisauce for Factorial Algorithms in different languages Kiwisauce 2009-08-07T13:10:39Z 2009-08-07T13:10:39Z <p>Python: </p> <pre><code>def factorial(n): return reduce(lambda x, y: x * y,range(1, n + 1)) </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/1653893#1653893 0 Answer by eyze for Factorial Algorithms in different languages eyze 2009-10-31T09:35:21Z 2009-10-31T09:35:21Z <h1>PHP - 59 chars</h1> <pre><code>function f($n){return array_reduce(range(1,$n),'bcmul',1);} </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/1743311#1743311 1 Answer by worldi for Factorial Algorithms in different languages worldi 2009-11-16T16:36:01Z 2009-11-16T16:36:01Z <p><strong>*NIX Shell</strong></p> <p>Linux version:</p> <pre><code>seq -s'*' 42 | bc </code></pre> <p>BSD version:</p> <pre><code>jot -s'*' 42 | bc </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages/1743353#1743353 0 Answer by finnw for Factorial Algorithms in different languages finnw 2009-11-16T16:43:05Z 2009-11-16T16:43:05Z <h2>SETL</h2> <p>...where Haskell and Python borrowed their list comprehensions from.</p> <pre><code>proc factorial(n); return 1 */ {1..n}; end factorial; </code></pre> <p>And the built-in <code>INTEGER</code> type is arbitrary-precision, so this will work for any positive <code>n</code>.</p>