forked from williamfiset/Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GCD.java
30 lines (26 loc) · 877 Bytes
/
GCD.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* An implementation of finding the GCD of two numbers
*
* <p>Time Complexity ~O(log(a + b))
*
* @author William Fiset, [email protected]
*/
package com.williamfiset.algorithms.math;
public class GCD {
// Computes the Greatest Common Divisor (GCD) of a & b
// This method ensures that the value returned is non negative
public static long gcd(long a, long b) {
return b == 0 ? (a < 0 ? -a : a) : gcd(b, a % b);
}
public static void main(String[] args) {
System.out.println(gcd(12, 18)); // 6
System.out.println(gcd(-12, 18)); // 6
System.out.println(gcd(12, -18)); // 6
System.out.println(gcd(-12, -18)); // 6
System.out.println(gcd(5, 0)); // 5
System.out.println(gcd(0, 5)); // 5
System.out.println(gcd(-5, 0)); // 5
System.out.println(gcd(0, -5)); // 5
System.out.println(gcd(0, 0)); // 0
}
}