跳轉到內容

一些基本且低效的素數生成演算法

50% developed
來自華夏公益教科書,開放的書籍,開放的世界

PGsimple1

[編輯 | 編輯原始碼]

在任何典型的程式語言課程中,學生都會得到一個專案,要求他們編寫一個生成素數的程式。這被認為是一項相對簡單的任務,會在課程的前幾周內分配。我相信您也知道,一些簡單而有效的演算法可以在短短幾分鐘內完成作業。在以下示例中,我將使用 Python2.5 程式語言來演示此類演算法並比較它們的效率。

我們將考慮的第一個演算法將從整數 2 開始,並繼續選擇每個連續的整數作為潛在的素數 (pp),透過測試它是否可以被任何先前識別的素數分解來檢查素性,然後將每個新驗證的素數儲存在一個素數集 (ps) 陣列中。

pp = 2
ps = [pp]
lim = raw_input("\nGenerate prime numbers up to what number? : ")
while pp < int(lim):
    pp += 1
    for a in ps:
        if pp % a == 0:
            break
        else:
            if pp not in ps:
                ps.append(pp)
print ps

注意:上面給出的程式碼不構成完整的程式。請參閱附錄 A,瞭解包含使用者介面的完整程式。

這樣一種簡單的演算法採用嚴格的暴力方法有效地實現了識別每個素數並將其儲存在陣列中的目標。我相信您會同意,這也是生成素數最不高效的方法。正如我們將看到的,使用篩選過程的元素將提高我們程式的效率,同時避免真正埃拉託斯特尼篩法的耗時屬性,埃拉託斯特尼篩法在識別為可分解並將其從素數中排除之前,會選擇每個連續的整數作為潛在的素數,就像 PGsimple1 所做的那樣。

執行時資料

primes          pgsimple1 
up to           takes

100             .00100 sec
1000            .02800 sec
10000           1.6980 sec
100000          130.44 sec
1000000         10732  sec

這些是在每個限制下 5 次測試執行中獲得的最佳時間結果。

此表記錄了 pgsimple1 在每個指示的限制下的執行時間。請接受,這些執行時間以及本文件中給出的所有執行時間可能與您可能在具有不同硬體或軟體的計算機上執行相同程式時獲得的執行時間有所不同,我的計算機配備 AMD Turion 64 1.9 GHz,2GB RAM,160GB HDD 和 Windows Vista。

PGsimple2

[編輯 | 編輯原始碼]

改進此演算法的第一步可能是有效地選擇潛在的素數。在演算法中,最常見的是從整數 3 開始,透過僅選擇連續的奇數作為潛在的素數來進行。這將必須測試的潛在素數總數減少了一半。

pp = 2
ps = [pp]
pp += 1
ps.append(pp)
lim = raw_input("\nGenerate prime numbers up to what number? : ")
while pp < int(lim):
	pp += 2
	test = True
	for a in ps:
		if pp % a == 0:
           test = False
           break
		if test:
		    ps.append(pp)
return ps

現在,暴力方法已透過一些簡單的邏輯進行增強,從而顯著提高了效率,將潛在素數的數量減少了一半。

執行時資料

primes          pgsimple2        times faster compared
up to           takes            to pgsimple1

100             0.0              ~
1000            .01400           2.00
10000           .85700           1.98
100000          65.240           2.00
1000000         5392.9           1.99
10000000        458123           ~

這些是在每個限制下 5 次測試執行中獲得的最佳時間結果。

此表記錄了 pgsimple2 的執行時間,以及與 pgsimple1 相比,它在每個限制下完成執行的速度快了多少倍。請注意,效率在任何限制下都保持接近 pgsimple1 的兩倍。即使以這種速度,生成 8 位或更多位的素數仍然很不切實際。但是,我這樣做只是為了看看需要多長時間。

PGsimple3

[編輯 | 編輯原始碼]

下一個最明顯的改進可能是將測試過程限制為僅檢查潛在的素數是否可以被小於或等於潛在素數平方根的素數分解,因為大於潛在素數平方根的素數將是至少一個小於潛在素數平方根的素數的互補因子。

from math import sqrt

pp = 2
ps = [pp]
pp += 1
ps.append(pp)
lim = raw_input("\nGenerate prime numbers up to what number? : ")
while pp < int(lim):
	pp += 2
	test = True
	sqrtpp = sqrt(pp)
	for a in ps:
		if a > sqrtpp:
		    break
		if pp % a == 0:
		    test = False
		    break
	if test:
	    ps.append(pp)
return ps

此演算法在效率方面取得了真正顯著的進步,並且,在這一點上,大多數程式設計師已經用盡了繼續提高素數生成器效率的能力或願望,但我們將繼續前進。

執行時資料

primes          pgsimple3        times faster compared        times faster compared
up to           takes            to pgsimple1                 to pgsimple2

100             0.0              ~                            ~
1000            .00300           9.33                         4.67
10000           .06200           27.4                         13.8
100000          1.1220           116                          58.1
1000000         26.979           398                          200
10000000        705.37           ~                            649
100000000       18780            ~                            ~

這些是在每個限制下 5 次測試執行中獲得的最佳時間結果。

此表記錄了 pgsimple3 的執行時間,以及與 pgsimple1 和 pgsimple2 相比,它在每個限制下完成執行的速度快了多少倍。請注意,程式執行的時間越長,效率就越顯著。

PGsimple4

[編輯 | 編輯原始碼]

認識到透過使用跳數 2 來僅選擇奇數潛在素數,不再需要針對小於素數平方根的所有素數測試潛在的素數,因為它們都不能被 2 分解。因此,我們可以從我們測試潛在素數的素數集中移除第一個素數。這需要將素數集 (ps) 陣列劃分為例外素數 (ep) 和測試素數 (tp) 陣列,然後在最後將它們重新組合以將完整的集合傳送回函數呼叫。

from math import sqrt

pp = 2
ep = [pp]
pp += 1
tp = [pp]
ss = [2]
lim = raw_input("\nGenerate prime numbers up to what number? : ")
while pp < int(lim):
	pp += ss[0]
	test = True
	sqrtpp = sqrt(pp)
	for a in tp:
		if a > sqrtpp:
		    break
		if pp % a == 0:
		    test=False
		    break
	if test:
	    tp.append(pp)
ep.reverse()
[tp.insert(0,a) for a in ep]
return tp

在下一個版本中,將展示為什麼我們將跳數 (2) 放入跳集 (ss) 陣列中。

執行時資料

primes          pgsimple4        times faster compared
up to           takes            to pgsimple3

100             0.0              ~
1000            .00300           1.00
10000           .05200           1.19
100000          1.1140           1.01
1000000         26.734           1.01
10000000        702.54           1.00
100000000       18766            1.00

這些是在每個限制下 5 次測試執行中獲得的最佳時間結果。

此表記錄了 pgsimple4 的執行時間,以及與 pgsimple3 相比,它在每個限制下完成執行的速度快了多少倍。

效率有什麼改進?請注意,與 pgsimple3 相比,效率只有微弱的提高。不用擔心,隨著我在接下來向您展示的程式更高階版本中從測試過程中排除更多素數,效率的提高將成倍增加。

此演算法透過從考慮因素中排除先前識別的素數的倍數來有效地選擇潛在的素數,並將必須執行以驗證每個潛在素數的素性的測試次數降至最低。雖然選擇潛在素數的效率允許程式在程式執行的時間越長,每秒篩選的數字範圍越大,但必須對每個潛在素數執行的測試次數確實會繼續上升(但與其他演算法相比,上升速度較慢)。總而言之,這些過程提高了生成素數的效率,使即使在個人計算機上也可以在合理的時間內生成 10 位經過驗證的素數。

可以開發更多跳集,以排除可以被每個已識別的素數分解的潛在素數的選擇。儘管此過程更復雜,但它可以被概括並變得優雅。同時,我們可以繼續從測試素數集中刪除跳集排除倍數的每個素數,從而最大限度地減少必須對每個潛在素數執行的測試次數。此示例已逐行完全註釋,並提供了一些解釋,以幫助讀者充分理解演算法的工作原理。附錄 B 中提供了包含使用者介面但沒有註釋的完整程式。

請忽略使用者介面中出現的語法錯誤,例如“第 1 個素數”,而不是“第 1 個”,以及在完成的陣列中包含最後一個生成的素數,即使它可能大於使用者定義的限制。這些錯誤可以方便地由學生程式設計師輕鬆修正,但對於說明演算法的效能來說沒有必要。對於由此給讀者帶來的任何混亂或不便,我深感抱歉。

from math import sqrt

lim = raw_input("\nGenerate prime numbers up to what number? : ")
""" Get an upper limit from the user to determine the generator's termination point. """
sqrtlim = sqrt(float(lim))
""" Get the square root of the upper limit. This will be the upper limit of the test prime array 
for primes used to verify the primacy of any potential primes up to (lim). Primes greater than 
(sqrtlim) will be placed in an array for extended primes, (xp), not needed for the verification 
test. The use of an extended primes array is technically unnecessary, but helps to clarify that we 
have minimized the size of the test prime array. """
pp = 2
""" Initialize the variable for the potential prime, setting it to begin with the first prime 
number, (2). """
ss = [pp]
""" Initialize the array for the skip set, setting it at a single member, being (pp=2). Although 
the value of the quantity of members in the skip set is never needed in the program, it may be 
useful to understand that future skip sets will contain more than one member, the quantity of which 
can be calculated, and is the quantity of members of the previous skip set multiplied by one less 
than the value of the prime which the new skip set will exclude multiples of. Example - the skip 
set which eliminates multiples of primes up through 3 will have (3-1)*1=2 members, since the 
previous skip set had 1 member. The skip set which eliminates multiples of primes up through 5 will 
have (5-1)*2=8 members, since the previous skip set had 2 members, etc. """
ep = [pp]
""" Initialize the array for primes which the skip set eliminate multiples of, setting the first 
member as (pp=2) since the first skip set will eliminate multiples of 2 as potential primes. """
pp += 1
""" Advance to the first potential prime, which is 3. """
rss = [ss[0]]
""" Initialize an array for the ranges of each skip set, setting the first member to be the range 
of the first skip set, which is (ss[0]=2). Future skip sets will have ranges which can be 
calculated, and are the sum of the members of the skip set. Another method of calculating the range 
will also be shown below. """
tp = [pp]
""" Initialize an array for primes which are needed to verify potential primes against, setting the 
first member as (pp=3), since we do not yet have a skip set that excludes multiples of 3. Also note 
that 3 is a verified prime, without testing, since there are no primes less than the square root of 
3. """
i = 0
""" Initialize a variable for keeping track of which skip set range is current. """
rss.append(rss[i] * tp[0])
""" Add a member to the array of skip set ranges, the value being the value of the previous skip 
set range, (rss[0]=2), multiplied by the value of the largest prime which the new skip set will 
exclude multiples of, (tp[0]=3), so 2*3=6. This value is needed to define when to begin 
constructing the next skip set. """
xp = []
""" Initialize an array for extended primes which are larger than the square root of the user 
defined limit (lim) and not needed to verify potential primes against, leaving it empty for now. 
Again, the use of an extended primes array is technically unnecessary, but helps to clarify that we 
have minimized the size of the test prime array. """
pp += ss[0]
""" Advance to the next potential prime, which is the previous potential prime, (pp=3), plus the 
value of the next member of the skip set, which has only one member at this time and whose value is 
(ss[0]=2), so 3+2=5. """
npp = pp
""" Initialize a variable for the next potential prime, setting its value as (pp=5). """
tp.append(npp)
""" Add a member to the array of test primes, the member being the most recently identified prime, 
(npp=5). Note that 5 is a verified prime without testing, since there are no TEST primes less than 
the square root of 5. """
while npp < int(lim):
""" Loop until the user defined upper limit is reached. """
	i += 1
	""" Increment the skip set range identifier. """
	while npp < rss[i] + 1:
	""" Loop until the next skip set range is surpassed, since data through that range is
 	needed before constructing the next skip set. """
		for n in ss:
		""" Loop through the current skip set array, assigning the variable (n) the value 
 		of the next member of the skip set. """
			npp = pp + n
			""" Assign the next potential prime the value of the potential prime plus 
 			the value of the current member of the skip set. """
			if npp > int(lim):
			    break
			""" If the next potential prime is greater than the user defined limit, 
 			then end the 'for n' loop. """
			if npp <= rss[i] + 1:
			    pp = npp
			""" If the next potential prime is still within the range of the next skip 
 			set, then assign the potential prime variable the value of the next 
			potential prime. Otherwise, the potential prime variable is not changed 
 			and the current value remains the starting point for constructing the next 
 			skip set. """
			sqrtnpp = sqrt(npp)
			""" Get the square root of the next potential prime, which will be the 
			limit for the verification process. """
			test = True
			""" Set the verification flag to True. """
			for q in tp:
			""" Loop through the array of the primes necessary for verification of the 
 			next potential prime. """
				if sqrtnpp < q:
				    break
				""" If the test prime is greater than the square root of the next 
 				potential prime, then end testing through the 'for q' loop. """
				elif npp % q == 0:
				""" If the test prime IS a factor of the next potential prime. """
					test = False
					""" Then set the verification flag to False since the next 
					potential prime is not a prime number. """
					break
					""" And end testing through the 'for q' loop. """
				""" Otherwise, continue testing through the 'for q' loop. """
			if test:
			""" If the next potential prime has been verified as a prime number. """
				if npp <= sqrtlim:
				    tp.append(npp)
				""" And if the next potential prime is less than or equal to the 
 				square root of the user defined limit, then add it to the array of 
 				primes which potential primes must be tested against. """
				else:
				    xp.append(npp)
				""" Otherwise, add it to the array of primes not needed to verify 
 				potential primes against. """
			""" Then continue through the 'for n' loop. """
		if npp > int(lim):
		    break
		""" If the next potential prime is greater than the user defined limit, then end 
 		the 'while npp<rss[i]+1' loop. """
		""" Otherwise, continue the 'while npp<rss[i]+1' loop. """
	if npp > int(lim):
	    break
	""" If the next potential prime is greater than the user defined limit, then end the 'while 
 	npp<int(lim)' loop. """
	""" At this point, the range of the next skip set has been reached, so we may begin
	constructing a new skip set which will exclude multiples of primes up through the value of 
	the first member of the test prime set, (tp[0]), from being selected as potential 
	primes. """
	lrpp = pp
	""" Initialize a variable for the last relevant potential prime and set its value to the 
 	value of the potential prime. """
	nss = []
	""" Initialize an array for the next skip set, leaving it empty for now. """
	while pp < (rss[i] + 1) * 2-1:
	""" Loop until the construction of the new skip set has gone through the range of the new 
 	skip set. """
		for n in ss:
		""" Loop through the current skip set array. """
			npp = pp + n
			""" Assign the next potential prime the value of the potential prime plus 
 			the value of the current member of the skip set. """
			if npp > int(lim):
			    break
			""" If the next potential prime is greater than the user defined limit, 
 			then end the 'for n' loop. """
			sqrtnpp = sqrt(npp)
			""" Get the square root of the next potential prime, which will be the 
			limit for the verification process. """
			test = True
			""" Set the verification flag to True. """
			for q in tp:
			""" Loop through the array of the primes necessary for verification of the 
 			next potential prime. """
				if sqrtnpp < q:
				break
				""" If the test prime is greater than the square root of the next 
 				potential prime, then end testing through the 'for q' loop. """
				elif npp % q == 0:
				""" If the test prime IS a factor of the next potential prime. """
					test = False
					""" Then set the verification flag to False since the next 
 					potential prime is not a prime number. """
					break
					""" And end testing through the 'for q' loop. """
				""" Otherwise, continue testing through the 'for q' loop. """
			if test:
			""" If the next potential prime has been verified as a prime number. """
				if npp <= sqrtlim:
				    tp.append(npp)
				""" And if the next potential prime is less than or equal to the 
 				square root of the user defined limit, then add it to the array of 
 				primes which potential primes must be tested against. """
				else:
				    xp.append(npp)
				""" Otherwise, add it to the array of primes not needed to verify 
 				potential primes against. """
			if npp % tp[0] != 0:
			""" If the next potential prime was NOT factorable by the first member of 
 			the test array, then it is relevant to the construction of the new skip set 
 			and a member must be included in the new skip set for a potential prime to 
 			be selected. Note that this is the case regardless of whether the next 
 			potential prime was verified as a prime, or not. """
				nss.append(npp-lrpp)
				""" Add a member to the next skip set, the value of which is the 
 				difference between the last relevant potential prime and the next 
 				potential prime. """
				lrpp = npp
				""" Assign the variable for the last relevant potential prime the 
 				value of the next potential prime. """
			pp = npp
			""" Assign the variable for the potential prime the value of the next 
 			potential prime. """
			""" Then continue through the 'for n' loop. """
		if npp > int(lim):
		    break
		""" If the next potential prime is greater than the user defined limit, then end 
 		the 'while npp<(rss[i]+1)*2-1' loop. """
		""" Otherwise, continue the 'while npp<(rss[i]+1)*2-1' loop. """
	if npp > int(lim):
	    break
	""" If the next potential prime is greater than the user defined limit, then end the 'while 
 	npp<int(lim)' loop. """
	ss=nss
	""" Assign the skip set array the value of the new skip set array. """
	ep.append(tp[0])
	""" Add a new member to the excluded primes array, since the newly constructed skip set 
 	will exclude all multiples of primes through the first member of the test prime array. """
	del tp[0]
	""" Delete the first member from the test prime array since future potential primes will 
 	not have to be tested against this prime. """
	rss.append(rss[i] * tp[0])
	""" Add a member to the skip set range array with the value of the range of the next skip 
 	set. """
	npp = lrpp
	""" Assign the next potential prime the value of the last relevant potential prime. """
	""" Then continue through the 'while npp<int(lim)' loop. """
""" At this point the user defined upper limit has been reached and the generator has completed 
finding all of the prime numbers up to the user defined limit. """
ep.reverse()
""" Flip the array of excluded primes. """
[tp.insert(0, a) for a in ep]
""" Add each member of the flipped array into the beginning of the test primes array. """
tp.reverse()
""" Flip the array of test primes. """
[xp.insert(0, a) for a in tp]
""" Add each member of the flipped array into the beginning of the extended primes array. """
return xp
""" Send the completed array of all primes up to the user defined limit back to the function call. """

執行時資料

primes          pg7.8            times faster compared        times faster compared
up to           takes            to pgsimple1                 to pgsimple4

100             0.0              ~                            ~
1000            .00100           28.0                         3.00
10000           .01800           94.3                         2.89
100000          .28400           459                          3.92
1000000         5.6220           1909                         4.76
10000000        120.53           ~                            5.83
100000000       2752.1           ~                            6.82
1000000000      65786            ~                            ~

這些是在每個限制下 5 次測試執行中獲得的最佳時間結果。

此表記錄了 pg7.8 的執行時間,以及與 pgsimple1 和 pgsimple4 相比,它在每個限制下完成執行的速度快了多少倍。請注意,程式執行的時間越長,效率就越顯著。

作者的一點說明

[編輯 | 編輯原始碼]

感謝您抽出時間研究該演算法,我希望它能給您帶來啟發。如果您選擇將此演算法翻譯成其他程式語言,請將您的作品副本傳送電子郵件至 cfo@mfbs.org。

素數最佳演算法所有者的說明

[編輯 | 編輯原始碼]

嗯,所有步驟都很好,但你可以在一開始就停止;只要你能夠說明所有 N>1 的 2N 都不是素數,你也可以說明除了 3 之外的所有素數都不在 3N 的形式中,等等。
它在第一步中導致了已知的 6N±1 素數形式(這很優雅但錯誤,真正的形式是 6N+1 或 6N+5),但你可以做得更好,只要你使用 30N+1、30N+7、30N+11 ..... 30N+29 或者甚至更好,使用 210N+1、210N+11、210N+13 ...... 210N+209。
簡而言之,使用演算法以智慧方式縮減“搜尋範圍”,使用 1*1, 1*2, 1*2*3, 1*2*3*5, 1*2*3*5*7 .... 作為“基礎”以及一個“位移”列表來新增。

但請注意,速度仍然受到多個不斷增長的“sqrt”和“div”(或更好的“mod”)運算的影響。
“sqrt”運算可以“反轉”,只需執行一個 N^2 即可限制測試的有效性:時間效益非常大!
同樣可以避免“模數”運算,但技巧有點長,以後再說。

因此,只要你能猜到素數,並能區分“真實”素數和“偽”素數,就沒有必要計算素數。

如果你已經研究過這個演算法,你會發現它透過生成跳躍集來智慧地縮減“搜尋範圍”,這些跳躍集以已知素數為基礎,無限地過濾 6N、30N、210N 等。就像你建議的那樣,即使如此,只有大於跳躍集基礎素數的因子才能被過濾,需要測試大於過濾素數但小於被測試數字的平方根的素數。因此,需要至少生成所有小於最大測試數字的平方根的素數。也就是說,區分“真實”素數和“偽”素數的唯一方法。

#! /usr/bin/env python

from math import sqrt
from time import time

def pg():
    # pgsimple1, the least efficient algorithm
    lim = raw_input("\nGenerate prime numbers up to what number? : ")
    pp = 2
    ps = [pp]
    bt = time()
    while pp<int(lim):
        pp += 1
        test = True
        for a in ps:
            if pp % a == 0:
                test = False
        if test:
            ps.append(pp)
    et = time()
    tt = et - bt
    a = test = et = bt = pp = 0
    print "\nIt took",tt,"seconds to generate the prime set up to: ", lim, "\nwith", len(ps), "members."
    tt = lim = 0
    return ps

def ui(a):
    m = "\nDo you wish to review the numbers? Enter y for yes or q to quit. "
    n = "From: "
    o = "To: "
    p = "or"
    q = "is out of the range of the set generated."
    r = "and"
    s = "There are none between"
    t = "\nPlease pick between 0"
    u = "\nThey are the"
    v = "th thru"
    w = "th members."
    x = "\nPlease choose a number that is less than"
    y = "a prime number."
    z = "\nThere are"
    A = "members of the prime set"
    C = "Make a selection or enter q to quit. "
    f = raw_input(m)
    while f != 'q':
        if f == 'y':
            print "\nChoose a category:"
            print "a) Pick a range of indexes of members of the prime number set."
            print "b) Pick a range of numbers to view prime numbers in that range."
            print "d) Input a number to check its membership in the prime number set."
            print "e) Get the number of members in the prime set up to a particular number."
            print "f) Get the number of members in the prime set between a range of numbers."
            print "v) View 100 primes at a time."
            f = raw_input(C)
            if f == 'a':
                print t, r, len(a)
                f = raw_input(n)
                g = raw_input(o)
                if int(g) < int(f):
                    h = f
                    f = g
                    g = h
                if int(f) < 0 or int(g) > len(a):
                    print f, p, g, q
                elif f == g:
                    print s, f, r, g
                else:
                    print [a[h] for h in range(int(f), int(g))], "\n", u, str(int(f) + 1) + v, str(g) + w
            if f == 'b':
                print t, r, a[len(a) - 1] + 1
                f = raw_input(n)
                g = raw_input(o)
                if int(g) < int(f):
                    h = f
                    f = g
                    g = h
                if int(f) < 0 or int(g) > a[len(a) - 1] + 1:
                    print f, p, g, q
                elif f == g:
                    print s, f, r, g
                else:
                    i = 0
                    while a[i] < int(f):
                        i += 1
                    j = i
                    while i < len(a) and a[i] <= int(g):
                        print a[i],
                        i += 1
                    print u, str(int(j) + 1) +v,str(i) + w
            if f == 'd':
                print x, a[len(a) - 1] + 1
                f = raw_input("What number do you want to check? ")
                for g in a:
                    if int(g) == int(f):
                        print f, "is", y
                    if int(g) > int(f):
                        print f, "is not", y
                    if int(f) < 0 or int(g) >= int(f):
                        break
                if int(f) > g + 1 or int(f) < 0:
                    print f, q
            if f == 'e':
                print x, a[len(a) - 1] + 2
                f = raw_input(o)
                if -1 < int(f) <a[len(a) - 1] + 2:
                    g = 0
                    while a[g] <= int(f):
                        g += 1
                        if g == len(a):
                            break
                    print z, g, A, "up to", f
                else:
                    print f, q
            if f == 'f':
                print t, r, a[len(a) - 1] + 1
                f = raw_input(n)
                g = raw_input(o)
                if int(g) < int(f):
                    h = f
                    f = g
                    g = h
                i = 0
                if int(f) < 0 or int(g) > a[len(a) - 1] + 1:
                    print f, p, g, q
                elif f == g:
                    print s, f, r, g
                else:
                    for j in a:
                        if int(f) <= int(j) <= int(g):
                            i += 1
                        elif int(j) > int(g):
                            break
                    print z, i, A, "from", f, "thru", g
            if f == 'v':
                g = 0
                h = 1
                while f != 'q' and g < len(a):
                    i = h * 100
                    for g in range(100*(h - 1),i):
                        if g == len(a):
                            i = len(a)
                            break
                        print a[g],
                    print u, str(100 * (h - 1) + 1) + v, str(i) + w
                    h += 1
                    if g == len(a):
                        break
                    f = raw_input("\nView the next 100 members or enter q to quit. ")
        f = raw_input(m)

def run(a = 'r'):
    while a is 'r':
        a = raw_input("\nEnter r to run prime generator. ")
        if a != 'r':
            b = pg()
            ui(b)

if __name__ == "__main__":
    run()
    print "\n" * 5, "Don't go away mad...Just go away.", "\n" * 5
#! /usr/bin/env python

from math import sqrt
from time import time

def pg():
    lim = raw_input("\nGenerate prime numbers up to what number? : ")
    sqrtlim = sqrt(float(lim))
    pp = 2
    ep = [pp]
    ss = [pp]
    pp += 1
    i = 0
    rss = [ss[0]]
    tp = [pp]
    xp = []
    pp += ss[0]
    npp = pp
    tp.append(npp)
    rss.append(rss[i] * tp[0])
    bt = time()
    while npp < int(lim):
        i += 1
        while npp < rss[i] + 1:
            for n in ss:
                npp = pp + n
                if npp > int(lim):
                    break
                if npp <= rss[i] + 1:
                    pp = npp
                sqrtnpp = sqrt(npp)
                test = True
                for q in tp:
                    if sqrtnpp < q:
                        break
                    elif npp % q == 0:
                        test = False
                        break
                if test:
                    if npp <= sqrtlim:
                        tp.append(npp)
                    else:
                        xp.append(npp)
            if npp > int(lim):
                break
        if npp > int(lim):
            break
        lrpp = pp
        nss = []
        while pp < (rss[i] + 1) * 2 - 1:
            for n in ss:
                npp = pp + n
                if npp > int(lim):
                    break
                sqrtnpp = sqrt(npp)
                test = True
                for q in tp:
                    if sqrtnpp < q:
                        break
                    elif npp % q == 0:
                        test = False
                        break
                if test:
                    if npp <= sqrtlim:
                        tp.append(npp)
                    else:
                        xp.append(npp)
                if npp % tp[0] != 0:
                    nss.append(npp - lrpp)
                    lrpp = npp
                pp = npp
            if npp > int(lim):
                break
        if npp > int(lim):
            break
        ss = nss
        ep.append(tp[0])
        del tp[0]
        rss.append(rss[i] * tp[0])
        npp = lrpp
    et = time()
    i = nss = npp = n = sqrtnpp = test = q = r = lrpp = rss = ss = pp = sqrtlim = 0
    tt = et - bt
    ep.reverse()
    [tp.insert(0, a) for a in ep]
    tp.reverse()
    [xp.insert(0, a) for a in tp]
    print "\nIt took", tt, "seconds to generate the prime set up to: ", lim, "\nwith", len(xp), "members."
    et = bt = ep = tp = a = tt = lim = 0
    return xp

def ui(a):
    m = "\nDo you wish to review the numbers? Enter y for yes or q to quit. "
    n = "From: "
    o = "To: "
    p = "or"
    q = "is out of the range of the set generated."
    r = "and"
    s = "There are none between"
    t = "\nPlease pick between 0"
    u = "\nThey are the"
    v = "th thru"
    w = "th members."
    x = "\nPlease choose a number that is less than"
    y = "a prime number."
    z = "\nThere are"
    A = "members of the prime set"
    C = "Make a selection or enter q to quit. "
    f = raw_input(m)
    while f != 'q':
        if f == 'y':
            print "\nChoose a category:"
            print "a) Pick a range of indexes of members of the prime number set."
            print "b) Pick a range of numbers to view prime numbers in that range."
            print "d) Input a number to check its membership in the prime number set."
            print "e) Get the number of members in the prime set up to a particular number."
            print "f) Get the number of members in the prime set between a range of numbers."
            print "v) View 100 primes at a time."
            f = raw_input(C)
            if f== 'a':
                print t, r, len(a)
                f = raw_input(n)
                g = raw_input(o)
                if int(g) < int(f):
                    h = f
                    f = g
                    g = h
                if int(f) < 0 or int(g) > len(a):
                    print f, p, g, q
                elif f==g: print s,f,r,g
                else:
                    print [a[h] for h in range(int(f), int(g))], "\n" , u, str(int(f) + 1) + v, str(g) + w
            if f == 'b':
                print t, r, a[len(a) - 1] + 1
                f = raw_input(n)
                g = raw_input(o)
                if int(g) < int(f):
                    h = f
                    f = g
                    g = h
                if int(f) < 0 or int(g) > a[len(a) - 1] + 1:
                    print f, p, g, q
                elif f == g:
                    print s, f, r, g
                else:
                    i = 0
                    while a[i] < int(f):
                        i += 1
                    j = i
                    while i < len(a) and a[i] <= int(g):
                        print a[i],
                        i += 1
                    print u, str(int(j) + 1) + v, str(i) + w
            if f == 'd':
                print x, a[len(a) - 1] + 1
                f = raw_input("What number do you want to check? ")
                for g in a:
                    if int(g) == int(f):
                        print f, "is", y
                    if int(g) > int(f):
                        print f, "is not", y
                    if int(f) < 0 or int(g) >= int(f):
                        break
                if int(f) > g + 1 or int(f) < 0:
                    print f, q
            if f == 'e':
                print x, a[len(a) - 1] + 2
                f = raw_input(o)
                if -1 < int(f) < a[len(a) - 1] + 2:
                    g = 0
                    while a[g] <= int(f):
                        g += 1
                        if g == len(a):
                            break
                    print z, g, A, "up to", f
                else:
                    print f, q
            if f == 'f':
                print t, r, a[len(a) - 1] + 1
                f = raw_input(n)
                g = raw_input(o)
                if int(g) < int(f):
                    h = f
                    f = g
                    g = h
                i = 0
                if int(f) < 0 or int(g) > a[len(a) - 1] + 1:
                    print f, p, g, q
                elif f == g:
                    print s, f, r, g
                else:
                    for j in a:
                        if int(f) <= int(j) <= int(g):
                            i += 1
                        elif int(j) > int(g):
                            break
                    print z, i, A, "from", f, "thru", g
            if f == 'v':
                g = 0
                h = 1
                while f != 'q' and g < len(a):
                    i = h * 100
                    for g in range(100 * (h - 1), i):
                        if g == len(a):
                            i = len(a)
                            break
                        print a[g],
                    print u, str(100 * (h - 1) + 1) + v, str(i) + w
                    h += 1
                    if g == len(a):
                        break
                    f = raw_input("\nView the next 100 members or enter q to quit. ")
        f = raw_input(m)

def run(a = 'r'):
    while a is 'r':
        a = raw_input("\nEnter r to run prime generator. ")
        if a != 'r':
            b = pg()
            ui(b)

if __name__ == "__main__":
    run()
    print "\n" * 5, "Don't go away mad...Just go away.", "\n" * 5
華夏公益教科書