将一段C ++转换为Python

时间:2012-08-20 02:07:21

标签: c++ python

我试图将此C ++转换为Python。我只练习Python,还没有触及过C / C ++。

int phi(const int n)
{
  // Base case
  if ( n < 2 )
    return 0;

  // Lehmer's conjecture
  if ( isprime(n) )
    return n-1;

  // Even number?
  if ( n & 1 == 0 ) {
    int m = n >> 1;
    return !(m & 1) ? phi(m)<<1 : phi(m);
  }

  // For all primes ...
  for ( std::vector<int>::iterator p = primes.begin();
        p != primes.end() && *p <= n;
        ++p )
  {
    int m = *p;
    if ( n % m  ) continue;

    // phi is multiplicative
    int o = n/m;
    int d = binary_gcd(m, o);
    return d==1? phi(m)*phi(o) : phi(m)*phi(o)*d/phi(d);
  }
}

大多数转换都很简单,只需要查找C ++运算符。但是,这一点:

      for ( std::vector<int>::iterator p = primes.begin();
        p != primes.end() && *p <= n;
        ++p )

Python中的含义是什么?

1 个答案:

答案 0 :(得分:3)

for p in primes:
  if p > n:
    break
   ...

for p in (x for x in primes if x <= n):
   ...

虽然前者会更快结束。