当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP gmp_gcdext()用法及代码示例


gmp_gcdext()是PHP中的一个内置函数,可计算GCD(最大公约数)和给定方程的乘数,使得a * x + b * y = GCD(a,b),其中GCD是最大公约数。
此函数用于求解线性丢番图方程在两个变量中。

用法:

array gmp_gcdext ( GMP $a, GMP $b )

参数:gmp_gcdext()函数接受上面列出和下面描述的两个参数:


  • $a: 此参数可以是PHP 5.5及更早版本中的GMP资源,也可以是PHP 5.6中的GMP对象,或者也可以传递数字字符串,只要可以将该字符串转换为数字即可。
  • $b: 此参数可以是PHP 5.5及更早版本中的GMP资源,也可以是PHP 5.6中的GMP对象,或者也可以传递数字字符串,只要可以将该字符串转换为数字即可。

返回值:此函数将返回GMP数字数组(GNU多重精度:对于大数),该数组是乘数(给定方程的x和y)和gcd。

例子:

Input: a = 12  ,  b = 21
       equation = 12 * x + 21 * y = 3
Output:  

Input: a = 5  ,  b = 10
       equation = 5 * x + 10 * y = 5
Output: x = 1  ,  y = 0  ,  GCD(12,21) = 5

下面的程序演示了gmp_gcdext()函数:

<?php 
// PHP code to solve a Diophantine equation  
   
// Solve the equation a*x + b*y = g 
// where a =, b =, g = gcd(5, 6) = 1 
$a = gmp_init(5); 
$b = gmp_init(6); 
   
// calculates gcd of two gmp numbers 
$g = gmp_gcd($a, $b);  
   
$r = gmp_gcdext($a, $b); 
   
$check_gcd = (gmp_strval($g) == gmp_strval($r['g']));  
$eq_res = gmp_add(gmp_mul($a, $r['s']), gmp_mul($b, $r['t'])); 
$check_res = (gmp_strval($g) == gmp_strval($eq_res)); 
   
if ($check_gcd && $check_res) { 
   
    $fmt = "Solution: %d * %d + %d * %d = %d\n"; 
    printf($fmt, gmp_strval($a), gmp_strval($r['s']), gmp_strval($b), 
    gmp_strval($r['t']), gmp_strval($r['g'])); 
}  
else
    echo "Error generated\n"; 
?>

输出:

Solution: 5 * -1 + 6 * 1 = 1

参考:http://php.net/manual/en/function.gmp-gcdext.php



相关用法


注:本文由纯净天空筛选整理自priya_1998大神的英文原创作品 PHP | gmp_gcdext() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。