Logo

Programming-Idioms

  • VB
  • Go

Idiom #74 Compute GCD

Compute the greatest common divisor x of big integers a and b. Use an integer type able to handle huge numbers.

Imports System.Numerics
Dim x = BigInteger.GreatestCommonDivisor(a, b)	

The BigInteger type from System.Numerics has a GreatestCommonDivisor method built in.
import "math/big"
x.GCD(nil, nil, a, b)

The first two arguments can be ignored in this use case.

x, a, b have pointer type *big.Int .
#include <gmp.h>
mpz_t _a, _b, _x;
mpz_init_set_str(_a, "123456789", 10);
mpz_init_set_str(_b, "987654321", 10);
mpz_init(_x);

mpz_gcd(_x, _a, _b);
gmp_printf("%Zd\n", _x);

New implementation...
< >
deleplace