Skip to content

Instantly share code, notes, and snippets.

@mycodeschool
Last active March 25, 2024 01:30
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save mycodeschool/6682603 to your computer and use it in GitHub Desktop.
Save mycodeschool/6682603 to your computer and use it in GitHub Desktop.
GCD: Brute force and Euclid's algorithm
#include<algorithm>
using namespace std;
int euclid_gcd(int a, int b)
{
while (b != 0)
{
int r = a % b;
a = b;
b = r;
}
return a;
}
int brute_force_gcd(int a, int b)
{
// We'll assume that a > b
int g = 0;
for (int d = 1; (long long)d * d <= b; d++)
{
if (b % d == 0)
{
// If d divides b, there are two divisors to check
// d and b/d
if (a % d == 0)
{
g = max(g, a);
}
if (a % (b / d) == 0)
{
g = max(g, b/d);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment