计数_欧拉 phi 函数
程序员文章站
2024-02-10 16:09:16
...
int eluer_phi(int n) {
int m = (int)sqrt(n + 0.5);
int ans = n;
for (int i = 2; i <= m; ++i)
if (n%i == 0) {
ans = ans / i * (i - 1);
while (n%i == 0) n /= i;
}
if (n > 1) ans = ans / n * (n - 1);//n本身是素数的情况
return ans;
}
//求1~n所有数的欧拉phi函数值
void phi_table(int n, int* phi) {
for (int i = 2; i <= n; ++i)
phi[i] = 0;
phi[1] = 1;
for(int i=2;i<=n;++i)
if (!phi[i]) {//i是素数的情况时
for (int j = i; j <= n; j += i) {//这些数必有因子i
if (!phi[j]) phi[j] = j;//开始的初始化
phi[j] = phi[j] / i * (i - 1);
}
}
}
下一篇: Vue项目打包后体积优化