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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_hamdist -- calculate hamming distance.
  2. Copyright 1994, 1996, 2001, 2002 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 "gmp.h"
  15. #include "gmp-impl.h"
  16. mp_bitcnt_t
  17. mpz_hamdist (mpz_srcptr u, mpz_srcptr v)
  18. {
  19.   mp_srcptr      up, vp;
  20.   mp_size_t      usize, vsize;
  21.   mp_bitcnt_t    count;
  22.   usize = SIZ(u);
  23.   vsize = SIZ(v);
  24.   up = PTR(u);
  25.   vp = PTR(v);
  26.   if (usize >= 0)
  27.     {
  28.       if (vsize < 0)
  29.         return ~ (mp_bitcnt_t) 0;
  30.       /* positive/positive */
  31.       if (usize < vsize)
  32.         MPN_SRCPTR_SWAP (up,usize, vp,vsize);
  33.       count = 0;
  34.       if (vsize != 0)
  35.         count = mpn_hamdist (up, vp, vsize);
  36.       usize -= vsize;
  37.       if (usize != 0)
  38.         count += mpn_popcount (up + vsize, usize);
  39.       return count;
  40.     }
  41.   else
  42.     {
  43.       mp_limb_t  ulimb, vlimb;
  44.       mp_size_t  old_vsize, step;
  45.       if (vsize >= 0)
  46.         return ~ (mp_limb_t) 0;
  47.       /* negative/negative */
  48.       usize = -usize;
  49.       vsize = -vsize;
  50.       /* skip common low zeros */
  51.       for (;;)
  52.         {
  53.           ASSERT (usize > 0);
  54.           ASSERT (vsize > 0);
  55.           usize--;
  56.           vsize--;
  57.           ulimb = *up++;
  58.           vlimb = *vp++;
  59.           if (ulimb != 0)
  60.             break;
  61.           if (vlimb != 0)
  62.             {
  63.               MPN_SRCPTR_SWAP (up,usize, vp,vsize);
  64.               ulimb = vlimb;
  65.               vlimb = 0;
  66.               break;
  67.             }
  68.         }
  69.       /* twos complement first non-zero limbs (ulimb is non-zero, but vlimb
  70.          might be zero) */
  71.       ulimb = -ulimb;
  72.       vlimb = -vlimb;
  73.       popc_limb (count, (ulimb ^ vlimb) & GMP_NUMB_MASK);
  74.       if (vlimb == 0)
  75.         {
  76.           mp_bitcnt_t  twoscount;
  77.           /* first non-zero of v */
  78.           old_vsize = vsize;
  79.           do
  80.             {
  81.               ASSERT (vsize > 0);
  82.               vsize--;
  83.               vlimb = *vp++;
  84.             }
  85.           while (vlimb == 0);
  86.           /* part of u corresponding to skipped v zeros */
  87.           step = old_vsize - vsize - 1;
  88.           count += step * GMP_NUMB_BITS;
  89.           step = MIN (step, usize);
  90.           if (step != 0)
  91.             {
  92.               count -= mpn_popcount (up, step);
  93.               usize -= step;
  94.               up += step;
  95.             }
  96.           /* First non-zero vlimb as twos complement, xor with ones
  97.              complement ulimb.  Note -v^(~0^u) == (v-1)^u. */
  98.           vlimb--;
  99.           if (usize != 0)
  100.             {
  101.               usize--;
  102.               vlimb ^= *up++;
  103.             }
  104.           popc_limb (twoscount, vlimb);
  105.           count += twoscount;
  106.         }
  107.       /* Overlapping part of u and v, if any.  Ones complement both, so just
  108.          plain hamdist. */
  109.       step = MIN (usize, vsize);
  110.       if (step != 0)
  111.         {
  112.           count += mpn_hamdist (up, vp, step);
  113.           usize -= step;
  114.           vsize -= step;
  115.           up += step;
  116.           vp += step;
  117.         }
  118.       /* Remaining high part of u or v, if any, ones complement but xor
  119.          against all ones in the other, so plain popcount. */
  120.       if (usize != 0)
  121.         {
  122.         remaining:
  123.           count += mpn_popcount (up, usize);
  124.         }
  125.       else if (vsize != 0)
  126.         {
  127.           up = vp;
  128.           usize = vsize;
  129.           goto remaining;
  130.         }
  131.       return count;
  132.     }
  133. }