fact.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:3k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  * fact.c
  3.  *
  4.  * Compute factorial of input integer
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public
  7.  * License Version 1.1 (the "License"); you may not use this file
  8.  * except in compliance with the License. You may obtain a copy of
  9.  * the License at http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS
  12.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  13.  * implied. See the License for the specific language governing
  14.  * rights and limitations under the License.
  15.  *
  16.  * The Original Code is the MPI Arbitrary Precision Integer Arithmetic
  17.  * library.
  18.  *
  19.  * The Initial Developer of the Original Code is Michael J. Fromberger.
  20.  * Portions created by Michael J. Fromberger are 
  21.  * Copyright (C) 1998, 1999, 2000 Michael J. Fromberger. 
  22.  * All Rights Reserved.
  23.  *
  24.  * Contributor(s):
  25.  *
  26.  * Alternatively, the contents of this file may be used under the
  27.  * terms of the GNU General Public License Version 2 or later (the
  28.  * "GPL"), in which case the provisions of the GPL are applicable
  29.  * instead of those above.  If you wish to allow use of your
  30.  * version of this file only under the terms of the GPL and not to
  31.  * allow others to use your version of this file under the MPL,
  32.  * indicate your decision by deleting the provisions above and
  33.  * replace them with the notice and other provisions required by
  34.  * the GPL.  If you do not delete the provisions above, a recipient
  35.  * may use your version of this file under either the MPL or the GPL.
  36.  *
  37.  *  $Id: fact.c,v 1.1 2000/07/14 00:44:56 nelsonb%netscape.com Exp $
  38.  */
  39. #include <stdio.h>
  40. #include <stdlib.h>
  41. #include <string.h>
  42. #include "mpi.h"
  43. mp_err mp_fact(mp_int *a, mp_int *b);
  44. int main(int argc, char *argv[])
  45. {
  46.   mp_int  a;
  47.   mp_err  res;
  48.   if(argc < 2) {
  49.     fprintf(stderr, "Usage: %s <number>n", argv[0]);
  50.     return 1;
  51.   }
  52.   mp_init(&a);
  53.   mp_read_radix(&a, argv[1], 10);
  54.   if((res = mp_fact(&a, &a)) != MP_OKAY) {
  55.     fprintf(stderr, "%s: error: %sn", argv[0],
  56.     mp_strerror(res));
  57.     mp_clear(&a);
  58.     return 1;
  59.   }
  60.   {
  61.     char  *buf;
  62.     int    len;
  63.     len = mp_radix_size(&a, 10);
  64.     buf = malloc(len);
  65.     mp_todecimal(&a, buf);
  66.     puts(buf);
  67.     free(buf);
  68.   }
  69.   mp_clear(&a);
  70.   return 0;
  71. }
  72. mp_err mp_fact(mp_int *a, mp_int *b)
  73. {
  74.   mp_int    ix, s;
  75.   mp_err    res = MP_OKAY;
  76.   if(mp_cmp_z(a) < 0)
  77.     return MP_UNDEF;
  78.   mp_init(&s);
  79.   mp_add_d(&s, 1, &s);   /* s = 1  */
  80.   mp_init(&ix);
  81.   mp_add_d(&ix, 1, &ix); /* ix = 1 */
  82.   for(/*  */; mp_cmp(&ix, a) <= 0; mp_add_d(&ix, 1, &ix)) {
  83.     if((res = mp_mul(&s, &ix, &s)) != MP_OKAY)
  84.       break;
  85.   }
  86.   mp_clear(&ix);
  87.   /* Copy out results if we got them */
  88.   if(res == MP_OKAY)
  89.     mp_copy(&s, b);
  90.   mp_clear(&s);
  91.   return res;
  92. }