Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles
(untagged)

Fast Greatest Common Divisor (GCD) Algorithm

0.00/5 (No votes)
11 Feb 2011 1  
Can we simplify it by: (This essentially passes only two numbers). public int GCD(int value1, int value2){ int max = 0; bool gcdFound = false; int counter = 1; //Make sure both numbers are atleast 2 or above if (( value1 <= 1 ) || (value2 <= 1)) return...
Can we simplify it by: (This essentially passes only two numbers).

C#
public int GCD(int value1, int value2)
{

    int max = 0;
    bool gcdFound = false;
    int counter = 1;

    //Make sure both numbers are atleast 2 or above
    if (( value1 <= 1 ) || (value2 <= 1))
        return (value1 < value2 ? value1 : value2);

    //If one of the two numbers is the exact divisor of then other or are equal to each other then we return that number here.
    gcdFound = (((value1 % value2 ) == 0 ) || ((value2 % value1 ) == 0 ));
    if (gcdFound)
    {
        return (value1 > value2 ? value2 : value1);
    }

    //Find the larger of the two numbers, the GCD can not be more than half of the smaller number.
    max =  value1 > value2 ? (value2 / 2) : (value1 / 2);
    counter = max + 1;

    while ((!gcdFound) && (counter > 1))
    {
        counter--;
        gcdFound = ((value1 % counter) == 0) && ((value2 % counter) == 0);
    }

    return counter;
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here