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

数学计算

开发平台:

Unix_Linux

  1. /* mpq_get_str -- mpq to string conversion.
  2. Copyright 2001, 2002, 2006 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include <stdio.h>
  15. #include <string.h>
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. char *
  19. mpq_get_str (char *str, int base, mpq_srcptr q)
  20. {
  21.   size_t  str_alloc, len;
  22.   ASSERT (ABS(base) >= 2);
  23.   ASSERT (ABS(base) <= 62);
  24.   str_alloc = 0;
  25.   if (str == NULL)
  26.     {
  27.       /* This is an overestimate since we don't bother checking how much of
  28.          the high limbs of num and den are used.  +2 for rounding up the
  29.          chars per bit of num and den.  +3 for sign, slash and ''.  */
  30.       str_alloc = ((size_t) ((ABS (q->_mp_num._mp_size) + q->_mp_den._mp_size)
  31.                              * GMP_LIMB_BITS
  32.                              * mp_bases[ABS(base)].chars_per_bit_exactly))
  33.                    + 5;
  34.       str = (char *) (*__gmp_allocate_func) (str_alloc);
  35.     }
  36.   mpz_get_str (str, base, mpq_numref(q));
  37.   len = strlen (str);
  38.   if (! MPZ_EQUAL_1_P (mpq_denref (q)))
  39.     {
  40.       str[len++] = '/';
  41.       mpz_get_str (str+len, base, mpq_denref(q));
  42.       len += strlen (str+len);
  43.     }
  44.   ASSERT (len == strlen(str));
  45.   ASSERT (str_alloc == 0 || len+1 <= str_alloc);
  46.   ASSERT (len+1 <=  /* size recommended to applications */
  47.           mpz_sizeinbase (mpq_numref(q), ABS(base)) +
  48.           mpz_sizeinbase (mpq_denref(q), ABS(base)) + 3);
  49.   if (str_alloc != 0)
  50.     __GMP_REALLOCATE_FUNC_MAYBE_TYPE (str, str_alloc, len+1, char);
  51.   return str;
  52. }