How can I write a program to find the factorial of any number?
|
|
This will work for the factorial (although a very small subset) of positive integers:
Due to the nature of your problem (and level that you have admitted), this solution is based more in the concept of solving this rather than a function that will be used in the next "Permutation Engine". |
|||||||||||||||||||||
|
|
This calculates factorials of non-negative integers[*] up to ULONG_MAX, which will have so many digits that it's unlikely your machine can store a whole lot more, even if it has time to calculate them. Uses the GNU multiple precision library, which you need to link against.
Example output:
[*] If you mean something else by "number" then you'll have to be more specific. I'm not aware of any other numbers for which the factorial is defined, despite valiant efforts by Pascal to extend the domain by use of the Gamma function. |
|||||||||||||
|
|
Why doing it in C when you can do it in Haskell: Freshman Haskell programmer
Sophomore Haskell programmer, at MIT (studied Scheme as a freshman)
Junior Haskell programmer (beginning Peano player)
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])
Senior Haskell programmer (voted for Nixon Buchanan Bush — “leans right”)
Another senior Haskell programmer (voted for McGovern Biafra Nader — “leans left”)
Yet another senior Haskell programmer (leaned so far right he came back left again!)
Memoizing Haskell programmer (takes Ginkgo Biloba daily)
Pointless (ahem) “Points-free” Haskell programmer (studied at Oxford)
Iterative Haskell programmer (former Pascal programmer)
Iterative one-liner Haskell programmer (former APL and C programmer)
Accumulating Haskell programmer (building up to a quick climax)
Continuation-passing Haskell programmer (raised RABBITS in early years, then moved to New Jersey)
Boy Scout Haskell programmer (likes tying knots; always “reverent,” he belongs to the Church of the Least Fixed-Point [8])
Combinatory Haskell programmer (eschews variables, if not obfuscation; all this currying’s just a phase, though it seldom hinders)
List-encoding Haskell programmer (prefers to count in unary)
Interpretive Haskell programmer (never “met a language” he didn't like)
Static Haskell programmer (he does it with class, he’s got that fundep Jones! After Thomas Hallgren’s “Fun with Functional Dependencies” [7])
Beginning graduate Haskell programmer (graduate education tends to liberate one from petty concerns about, e.g., the efficiency of hardware-based integers)
Cartesianally-inclined Haskell programmer (prefers Greek food, avoids the spicy Indian stuff; inspired by Lex Augusteijn’s “Sorting Morphisms” [3])
Ph.D. Haskell programmer (ate so many bananas that his eyes bugged out, now he needs new lenses!)
Tenured professor (teaching Haskell to freshmen)
|
|||||||||||||||||||
|
|
Thanks to Christoph, a C99 solution that works for quite a few "numbers":
produces 6.000000 120.000000 |
|||||||||||||||||
|
|
For large n you may run into some issues and you may want to use Stirling's approximation: Which is:
|
|||||||
|
|
If your main objective is an interesting looking function:
(Not recommended as an algorithm for real use.) |
|||
|
|
|
a tail-recursive version:
|
|||||
|
|
Here's a C program that uses OPENSSL's BIGNUM implementation, and therefore is not particularly useful for students. (Of course accepting a BIGNUM as the input parameter is crazy, but helpful for demonstrating interaction between BIGNUMs).
This test program shows how to create a number for input and what to do with the return value:
Compiled with gcc:
|
|||
|
|
|
|||
|
|
You use the following code to do it.
|
||||
|
|
|
For large numbers you probably can get away with an approximate solution, which If you're working somewhere without a full C99 math.h, you can easily do this type of thing yourself:
|
|||
|
|
source http://gist.github.com/25049 |
|||||||
|
|
In C99 (or Java) I would write the factorial function iteratively like this:
|
|||||
|
|
Example in C (C was tagged so i guess that's what you want) using recursion
|
||||
|
|
|
I don't think I'd use this in most cases, but one well-known practice which is becoming less widely used is to have a look-up table. If we're only working with built-in types, the memory hit is tiny. Just another approach, to make the poster aware of a different technique. Many recursive solutions also can be memoized whereby a lookup table is filled in when the algorithm runs, drastically reducing the cost on future calls (kind of like the principle behind .NET JIT compilation I guess). |
|||
|
|
|
I have to make my CS professors proud and say that this is a perfect Dynamic Programming problem :) |
|||||
|
|
We have to start from In c, i am writing it as a function.
|
||||
|
|
|
Simplest and efficent is to sum up logarhitms. If you use Log10 you get power and exponent. Pseudocode
You might need to add the code so the integer part does not increase to much and thus decrease accuracy, but result suld be ok for even very large factorials. |
|||||||
|

