我正在上一门数学课程,我们必须做一些整数分解作为解决问题的中间步骤。我决定编写一个 Python 程序来为我做这件事(我们没有测试我们的分解能力,所以这完全是光明正大的)。程序如下:
#!/usr/bin/env python3
import math
import sys
# Return a list representing the prime factorization of n. The factorization is
# found using trial division (highly inefficient).
def factorize(n):
def factorize_helper(n, min_poss_factor):
if n <= 1:
return []
prime_factors = []
smallest_prime_factor = -1
for i in range(min_poss_factor, math.ceil(math.sqrt(n)) + 1):
if n % i == 0:
smallest_prime_factor = i
break
if smallest_prime_factor != -1:
return [smallest_prime_factor] \
+ factorize_helper(n // smallest_prime_factor,
smallest_prime_factor)
else:
return [n]
if n < 0:
print("Usage: " + sys.argv[0] + " n # where n >= 0")
return []
elif n == 0 or n == 1:
return [n]
else:
return factorize_helper(n, 2)
if __name__ == "__main__":
factorization = factorize(int(sys.argv[1]))
if len(factorization) > 0:
print(factorization)
我也一直在自学一些 Haskell,所以我决定尝试用 Haskell 重写程序。该程序如下:
import System.Environment
-- Return a list containing all factors of n at least x.
factorize' :: (Integral a) => a -> a -> [a]
factorize' n x = smallestFactor
: (if smallestFactor == n
then []
else factorize' (n `quot` smallestFactor) smallestFactor)
where
smallestFactor = getSmallestFactor n x
getSmallestFactor :: (Integral a) => a -> a -> a
getSmallestFactor n x
| n `rem` x == 0 = x
| x > (ceiling . sqrt . fromIntegral $ n) = n
| otherwise = getSmallestFactor n (x+1)
-- Return a list representing the prime factorization of n.
factorize :: (Integral a) => a -> [a]
factorize n = factorize' n 2
main = do
argv <- getArgs
let n = read (argv !! 0) :: Int
let factorization = factorize n
putStrLn $ show (factorization)
return ()
(注意:这需要 64 位环境。在 32 位上,导入Data.Int
并Int64
用作 上的类型注释read (argv !! 0)
)
在我写完这篇文章后,我决定比较两者的性能,认识到有更好的算法,但是这两个程序使用基本相同的算法。例如,我会执行以下操作:
$ ghc --make -O2 factorize.hs
$ /usr/bin/time -f "%Uu %Ss %E" ./factorize 89273487253497
[3,723721,41117819]
0.18u 0.00s 0:00.23
然后,为 Python 程序计时:
$ /usr/bin/time -f "%Uu %Ss %E" ./factorize.py 89273487253497
[3, 723721, 41117819]
0.09u 0.00s 0:00.09
当然,每次我运行其中一个程序时,时间都会略有不同,但它们总是在这个范围内,Python 程序比编译的 Haskell 程序快几倍。在我看来,Haskell 版本应该能够运行得更快,我希望你能给我一个如何改进它的想法,这样就可以了。
我已经看到了一些关于优化 Haskell 程序的技巧,如对这个问题的回答,但似乎无法让我的程序运行得更快。循环比递归快得多吗?Haskell 的 I/O 是不是特别慢?我在实际实现算法时犯了错误吗?理想情况下,我希望有一个仍然相对容易阅读的优化版 Haskell