素数的快速列举(二)

       半年前曾在我的BLOG发过一篇文章(http://blog.csdn.net/northwolves/archive/2005/04/18/351998.aspx),对素数的快速列举进行了初步探讨,随后的讨论在http://community.csdn.net/Expert/topic/4395/4395751.xml?temp=.9719355进行, KiteGirl(小仙妹) jiangsheng(蒋晟.MSMVP2004Jan) 给予了很大的启发,特此将改进后的代码与大家共享。

Sub prime(ByVal n As Long, ByRef prime() As Long)
ReDim prime(5761495) '10^8以内的素数个数
Dim a() As Byte, i As Long, temp As Long, half As Long, p As Long, pcount As Long, mytime As Long, k As Integer
mytime = Timer '计时
half = n / 2
ReDim a(1 To half)
'the first 10 prime
prime(0) = 2
prime(1) = 3
prime(2) = 5
prime(3) = 7
prime(4) = 11
prime(5) = 13
prime(6) = 17
prime(7) = 19
prime(8) = 23
prime(9) = 29


pcount = 9

p = 3

Do While p * p <= n

temp = p * p

For i = temp To n Step 2 * p 'p的倍数
a(i / 2) = 1 '设为1表示弃去

Next

again:
p = p + 2

If a(p / 2) = 1 Then GoTo again

Loop

'把素数分成8种情况:30n+1,30n+7,30n+11,30n+13,30n+17,30n+19,30n+23,30n+29
Dim s(7) As Byte
s(0) = 0
s(1) = 3
s(2) = 5
s(3) = 6
s(4) = 8
s(5) = 9
s(6) = 11
s(7) = 14

For i = 15 To half Step 15

For j = 0 To 7
temp = i + s(j)
If temp > half Then Exit For: Exit For
If a(temp) = 0 Then
pcount = pcount + 1
prime(pcount) = 2 * temp + 1 '赋值
End If
Next

Next
ReDim Preserve prime(pcount) '重设置数组大小节省空间

Debug.Print "n=" & n & ",prime count=" & pcount & ", The calulating time is " & Timer - mytime & " s"
End Sub

Private Sub Command1_Click()
Dim p() As Long
Dim i As Long
For i = 2 To 8
prime 10 ^ i, p
Next
End Sub

返回:

n=100,prime count=25, The calulating time is 0.0000 seconds.
n=1000,prime count=168, The calulating time is 0.0000 seconds.
n=10000,prime count=1229, The calulating time is 0.0000 seconds.
n=100000,prime count=9592, The calulating time is 0.0002 seconds.
n=1000000,prime count=78498, The calulating time is 0.2269 seconds.
n=10000000,prime count=664579, The calulating time is 2.0719 seconds.
n=100000000,prime count=5761455, The calulating time is 15.2344 seconds.

当然,跟C语言的速度还是有一定距离的,但基本上可以满足计算的需要了,编译成EXE文件后还可以更快些。


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值