vote up 41 vote down star
34

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.

Ideas:

  • Procedural
  • Functional
  • Object Oriented
  • One liners
  • Obfuscated
  • Oddball
  • Bad Code
  • Polyglot

Basically I want to see an example, of different ways of writing an algorithm, and what they would look like in different languages.

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.

The only real requirement is it must find the factorial of a given argument, in all languages represented.

Be Creative!

Recommended Guideline:

# Language Name: Optional Style type

   - Optional bullet points

    Code Goes Here

Other informational text goes here

I will ocasionally go along and edit any answer that does not have decent formatting.

flag

123 Answers

vote up 2 vote down

Javascript:

factorial = function( n )
{
   return n > 0 ? n * factorial( n - 1 ) : 1;
}

I'm not sure what a Factorial is but that does what the other programs do in javascript.

link|flag
show 1 more comment
vote up 2 vote down

Ruby: Iterative

def factorial(n)
  (1 .. n).inject{|a, b| a*b}
end

Ruby: Recursive

def factorial(n)
  n == 1 ? 1 : n * factorial(n-1)
end
link|flag
vote up 2 vote down

Haskell:

factorial n = product [1..n]
link|flag
vote up 2 vote down

Eiffel


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
link|flag
vote up 2 vote down

befunge-93

                                    v
>v"Please enter a number (1-16) : "0<
,:             >$*99g1-:99p#v_.25*,@
^_&:1-99p>:1-:!|10          < 
         ^     <

An esoteric language by Chris Pressey of Cat's Eye Technologies.

link|flag
vote up 2 vote down

J

   fact=. verb define
*/ >:@i. y
)
link|flag
vote up 2 vote down

Smalltalk, memoized

Define a method on Dictionary

Dictionary >> fac: x
    ^self at: x ifAbsentPut: [ x * (self fac: x - 1) ]

usage

 d := Dictionary new.
 d at: 0 put: 1.
 d fac: 24
link|flag
vote up 2 vote down

Smalltalk, 1-Liner

(1 to: 24) inject: 1 into: [ :a :b | a * b ]
link|flag
vote up 2 vote down

Smalltalk, using a closure

    fac := [ :x | x = 0 ifTrue: [ 1 ] ifFalse: [ x * (fac value: x -1) ]].

    Transcript show: (fac value: 24) "-> 620448401733239439360000"

NB does not work in Squeak, requires full closures.

link|flag
vote up 2 vote down

Perl (Y-combinator/Functional)

print sub {
  my $f = shift;
  sub {
    my $f1 = shift;
    $f->( sub { $f1->( $f1 )->( @_ ) } )
  }->( sub {
    my $f2 = shift;
    $f->( sub { $f2->( $f2 )->( @_ ) } )
  } )
}->( sub {
  my $h = shift;
  sub {
    my $n = shift;
    return 1 if $n <=1;
    return $n * $h->($n-1);
  }
})->(5);

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.

link|flag
show 1 more comment
vote up 2 vote down

Mathematica: non-recursive

fact[n_] := Times @@ Range[n]

Which is syntactic sugar for Apply[Times, Range[n]]. I think that's the best way to do it, not counting the built-in n!, of course. Note that that automatically uses bignums.

link|flag
vote up 2 vote down

Common Lisp version:

(defun ! (n) (reduce #'* (loop for i from 2 below (+ n 1) collect i)))

Seems to be quite fast.

* (! 42)

1405006117752879898543142606244511569936384000000000
link|flag
show 1 more comment
vote up 2 vote down

Delphi iterative

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.

This function calculates factorials for somewhat larger arguments.

function Factorial(aNumber: Int64): String;
var
  F: Double;
begin
  F := 0;
  while aNumber > 1 do begin
    F := F + log10(aNumber);
    dec(aNumber);
  end;
  Result := FloatToStr(Power(10, Frac(F))) + ' * 10^' + IntToStr(Trunc(F));
end;

1000000! = 8.2639327850046 * 10^5565708

link|flag
show 2 more comments
vote up 2 vote down

Python:

Recursive

def fact(x): 
    return (1 if x==0 else x * fact(x-1))

Using iterator

import operator

def fact(x):
    return reduce(operator.mul, xrange(1, x+1))
link|flag
vote up 2 vote down

Logo

? to factorial :n
> ifelse :n = 0 [output 1] [output :n * factorial :n - 1]
> end

And to invoke:

? print factorial 5
120

This is using the UCBLogo dialect of logo.

link|flag
vote up 2 vote down

Agda2

It is Agda2, using the very nice Agda2 syntax.

module fac where

data Nat : Set where        -- Peano numbers
  zero : Nat
  suc : Nat -> Nat
{-# BUILTIN NATURAL Nat #-}
{-# BUILTIN SUC suc #-}
{-# BUILTIN ZERO zero #-}

infixl 10 _+_               -- Addition over Peano numbers
_+_ : Nat -> Nat -> Nat
zero + n    = n
(suc n) + m = suc (n + m)

infixl 20 _*_               -- Multiplication over Peano numbers
_*_ : Nat -> Nat -> Nat
zero * n = zero
n * zero = zero
(suc n) * (suc m) = suc n + (suc n * m)

_! : Nat -> Nat             -- Factorial function, syntax: "x !"
zero ! = suc zero
(suc n) ! = (suc n) * (n !)
link|flag
vote up 2 vote down

Perl, pessimal:

# 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;
    }
}

I trust I get extra points for not using the '*' operator...

link|flag
show 1 more comment
vote up 2 vote down

*NIX Shell

Linux version:

seq -s'*' 42 | bc

BSD version:

jot -s'*' 42 | bc
link|flag
vote up 2 vote down

Scala

The factorial can be defined functionally as:

def fact(n: Int): BigInt = 1 to n reduceLeft(_*_)

or more traditionally as

def fact(n: Int): BigInt = if (n == 0) 1 else fact(n-1) * n

and we can make ! a valid method on Ints:

object extendBuiltins extends Application {

  class Factorizer(n: Int) {
    def ! = 1 to n reduceLeft(_*_)
  }

  implicit def int2fact(n: Int) = new Factorizer(n)

  println("10! = " + (10!))
}
link|flag
vote up 1 vote down

C:

Edit: Actually C++ I guess, because of the variable declaration in the for loop.

 int factorial(int x) {
      int product = 1;

      for (int i = x; i > 0; i--) {
           product *= i;
      }

      return product;
 }
link|flag
1  
C99 is fine with that. – aib Sep 18 '08 at 22:13
vote up 1 vote down

C++

factorial(int n)
{
    for(int i=1, f = 1; i<=n; i++)
        f *= i;
    return f;
}
link|flag
vote up 1 vote down

Java: functional

int factorial(int x) {
    return x == 0 ? 1 : x * factorial(x-1);
}
link|flag
show 1 more comment
vote up 1 vote down

Haskell: Functional

 fact 0 = 1
 fact n = n * fact (n-1)
link|flag
vote up 1 vote down

This one not only calculates n!, it is also O(n!). It may have problems if you want to calculate anything "big" though.

long f(long n)
{
    long r=1;
    for (long i=1; i<n; i++)
        r=r*i;
    return r;
}

long factorial(long n)
{
    // iterative implementation should be efficient
    long result;
    for (long i=0; i<f(n); i++)
        result=result+1;
    return result;
}
link|flag
vote up 1 vote down

Bourne Shell: Functional

factorial() {
  if [ $1 -eq 0 ]
  then
    echo 1
    return
  fi

  a=`expr $1 - 1`
  expr $1 \* `factorial $a`
}

Also works for Korn Shell and Bourne Again Shell. :-)

link|flag
vote up 1 vote down

Lisp recursive:

(defun factorial (x) 
   (if (<= x 1) 
       1 
       (* x (factorial (- x 1)))))
link|flag
show 1 more comment
vote up 1 vote down

JavaScript Using anonymous functions:

var f = function(n){
  if(n>1){
    return arguments.callee(n-1)*n;
  }
  return 1;
}
link|flag
vote up 1 vote down

C: One liner, procedural

int f(int n) { for (int i = n - 1; i > 0; n *= i, i--); return n ? n : 1; }

I used int's for brevity; use other types to support larger numbers.

link|flag
show 1 more comment
vote up 1 vote down

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.

def factorial (n)
  return multiply_range(1, n)
end

def multiply_range(n, m)
  if (m < 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
link|flag
1  
This is not faster. What is the number of recursive calls for a given n? Additionally your solution is O(n) in space. – J.F. Sebastian Oct 19 '08 at 14:36
vote up 1 vote down

Simple solutions are the best:

#include <stdexcept>;

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 < 0) || (f >= max))
    {   throw std::range_error("Factorial Range Error");
    }

    return fact[f];
}
link|flag

Your Answer

Get an OpenID
or
never shown

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