min.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* min(MINT) -- Do decimal input from standard input and store result in
  2.    MINT.
  3. Copyright 1991, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include <stdio.h>
  16. #include <ctype.h>
  17. #include "mp.h"
  18. #include "gmp.h"
  19. #include "gmp-impl.h"
  20. extern const unsigned char __gmp_digit_value_tab[];
  21. #define digit_value_tab __gmp_digit_value_tab
  22. void
  23. min (MINT *dest)
  24. {
  25.   char *str;
  26.   size_t alloc_size, str_size;
  27.   int c;
  28.   int negative;
  29.   mp_size_t dest_size;
  30.   const unsigned char *digit_value;
  31.   digit_value = digit_value_tab;
  32.   alloc_size = 100;
  33.   str = (char *) (*__gmp_allocate_func) (alloc_size);
  34.   str_size = 0;
  35.   /* Skip whitespace.  */
  36.   do
  37.     c = getc (stdin);
  38.   while (isspace (c));
  39.   negative = 0;
  40.   if (c == '-')
  41.     {
  42.       negative = 1;
  43.       c = getc (stdin);
  44.     }
  45.   if (c == EOF || digit_value[c] >= 10)
  46.     return; /* error if no digits */
  47.   do
  48.     {
  49.       int dig;
  50.       dig = digit_value[c];
  51.       if (dig >= 10)
  52. break;
  53.       if (str_size >= alloc_size)
  54. {
  55.   size_t old_alloc_size = alloc_size;
  56.   alloc_size = alloc_size * 3 / 2;
  57.   str = (char *) (*__gmp_reallocate_func) (str, old_alloc_size, alloc_size);
  58. }
  59.       str[str_size++] = dig;
  60.       c = getc (stdin);
  61.     }
  62.   while (c != EOF);
  63.   ungetc (c, stdin);
  64.   dest_size = str_size / mp_bases[10].chars_per_limb + 1;
  65.   if (dest->_mp_alloc < dest_size)
  66.     _mp_realloc (dest, dest_size);
  67.   dest_size = mpn_set_str (dest->_mp_d, (unsigned char *) str, str_size, 10);
  68.   dest->_mp_size = negative ? -dest_size : dest_size;
  69.   (*__gmp_free_func) (str, alloc_size);
  70.   return;
  71. }