JavaAlgorithms/Others/EulersFunction.java

29 lines
676 B
Java
Raw Normal View History

package Others;
/**
* You can read more about Euler's totient function
2020-10-24 18:23:28 +08:00
*
* <p>See https://en.wikipedia.org/wiki/Euler%27s_totient_function
*/
2019-02-03 22:48:44 +08:00
public class EulersFunction {
2020-10-24 18:23:28 +08:00
// This method returns us number of x that (x < n) and gcd(x, n) == 1 in O(sqrt(n)) time
// complexity;
public static int getEuler(int n) {
int result = n;
for (int i = 2; i * i <= n; i++) {
if (n % i == 0) {
while (n % i == 0) n /= i;
result -= result / i;
}
2019-02-03 22:48:44 +08:00
}
2020-10-24 18:23:28 +08:00
if (n > 1) result -= result / n;
return result;
}
2020-10-24 18:23:28 +08:00
public static void main(String[] args) {
for (int i = 1; i < 100; i++) {
System.out.println(getEuler(i));
2019-02-03 22:48:44 +08:00
}
2020-10-24 18:23:28 +08:00
}
2019-02-03 22:48:44 +08:00
}