vote up 35 vote down star
29

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

118 Answers

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

PostScript: Tail Recursive

/fact0 { dup 2 lt { pop } { 2 copy mul 3 1 roll 1 sub exch pop fact0 } ifelse } def
/fact { 1 exch fact0 } def
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

Scala

The factorial can be defined functionally as:

def fact(n : Int): BigInt = 
  (1 until (n+1)).foldLeft(1)(_*_)

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 {
  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!))
}
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 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

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
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
vote up 1 vote down

Scala: Recursive

  • Should compile to being tail recursive. Should!

.

def factorial( value: BigInt ): BigInt = value match {
  case 0 => 1
  case _ => value * factorial( value - 1 )
}
link|flag
show 1 more comment
vote up 1 vote down

Occam-pi

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

OCaml

Lest anyone believe OCaml and oddball go hand-in-hand, I thought I would provide a sane implementation of factorial.

# let rec factorial n =
    if n=0 then 1 else n * factorial(n - 1);;

I don't think I made my case very well...

link|flag
vote up 1 vote down

Genuinely functional Java:

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

}
link|flag
vote up 1 vote down

Python, C/C++ (weave): Multi-Language, Procedural

Four implementations:

  • [weave]
  • [python]
  • [psyco]
  • [list]

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 > 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 > 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]


Measure relative performance:

$ python -mtimeit \
         -s "from weave_factorial import factorial_$label as f" "f($n)"
  1. n = 12

    • [weave] 0.70 µsec (2)
    • [python] 3.8 µsec (9)
    • [psyco] 1.2 µsec (3)
    • [list] 0.43 µsec (1)
  2. n = 20

    • [weave] 0.85 µsec (2)
    • [python] 9.2 µsec (21)
    • [psyco] 4.3 µsec (10)
    • [list] 0.43 µsec (1)

µsec stands for microseconds.

link|flag
show 8 more comments

Your Answer

Get an OpenID
or

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