上一講和本講的標(biāo)題是“大話(huà)題小函數(shù)”,所謂大話(huà)題,就是這些函數(shù)如果溯源,都會(huì)找到聽(tīng)起來(lái)更高大上的東西。這種思維方式絕對(duì)我堅(jiān)定地繼承了中華民族的優(yōu)良傳統(tǒng)的。自從天朝的臣民看到英國(guó)人開(kāi)始踢足球,一直到現(xiàn)在所謂某國(guó)勃起了,都一直在試圖論證足球起源于該朝的前前前朝的某國(guó)時(shí)代,并且還搬出了那時(shí)候的一個(gè)叫做高俅的球星來(lái)論證,當(dāng)然了,勃起的某國(guó)是擋不住該國(guó)家隊(duì)在世界杯征程上的陽(yáng)痿,只能用高俅來(lái)意淫一番了。這種思維方式,我是堅(jiān)定地繼承,因?yàn)樵谖页砷L(zhǎng)過(guò)程中,它一直被奉為優(yōu)良傳統(tǒng)。阿Q本來(lái)是姓趙的,和趙老爺是本家,比秀才要長(zhǎng)三輩,雖然被趙老爺打了嘴。
廢話(huà)少說(shuō),書(shū)接前文,已經(jīng)研究了map,下面來(lái)看reduce。
忍不住還得來(lái)點(diǎn)廢話(huà)。不知道看官是不是聽(tīng)說(shuō)過(guò)MapReduc,如果沒(méi)有,那么Hadoop呢?如果還沒(méi)有,就google一下。下面是我從維基百科上抄下來(lái)的,共賞之。
MapReduce是Google提出的一個(gè)軟件架構(gòu),用于大規(guī)模數(shù)據(jù)集(大于1TB)的并行運(yùn)算。概念“Map(映射)”和“Reduce(化簡(jiǎn))”,及他們的主要思想,都是從函數(shù)式編程語(yǔ)言借來(lái)的,還有從矢量編程語(yǔ)言借來(lái)的特性。
不用管是不是看懂,總之又可以用開(kāi)頭的思想意淫一下了,原來(lái)今天要鼓搗的這個(gè)reduce還跟大數(shù)據(jù)有關(guān)呀。不管怎么樣,你有夢(mèng)一般的感覺(jué)就行。
reduce
回到現(xiàn)實(shí),清醒一下,繼續(xù)敲代碼:
>>> reduce(lambda x,y: x+y,[1,2,3,4,5])
15
?請(qǐng)看官仔細(xì)觀(guān)察,是否能夠看出是如何運(yùn)算的呢?畫(huà)一個(gè)圖:
還記得map是怎么運(yùn)算的嗎?忘了?看代碼:
>>> list1 = [1,2,3,4,5,6,7,8,9]
>>> list2 = [9,8,7,6,5,4,3,2,1]
>>> map(lambda x,y: x+y, list1,list2)
[10, 10, 10, 10, 10, 10, 10, 10, 10]
?看官對(duì)比一下,就知道兩個(gè)的區(qū)別了。原來(lái)map是上下運(yùn)算,reduce是橫著逐個(gè)元素進(jìn)行運(yùn)算。
權(quán)威的解釋來(lái)自官網(wǎng):
reduce(function, iterable[, initializer])
?
Apply function of two arguments cumulatively to the items of iterable, from left to right, so as to reduce the iterable to a single value. For example, reduce(lambda x, y: x+y, [1, 2, 3, 4, 5]) calculates ((((1+2)+3)+4)+5). The left argument, x, is the accumulated value and the right argument, y, is the update value from the iterable. If the optional initializer is present, it is placed before the items of the iterable in the calculation, and serves as a default when the iterable is empty. If initializer is not given and iterable contains only one item, the first item is returned. Roughly equivalent to:
?
?def reduce(function, iterable, initializer=None):
??? it = iter(iterable)
??? if initializer is None:
??????? try:
??????????? initializer = next(it)
??????? except StopIteration:???
??????????? raise TypeError('reduce() of empty sequence with no initial value')???
??? accum_value = initializer??????????????????????????????????????????????????????????????????
??? for x in it:
??????? accum_value = function(accum_value, x)???
??? return accum_value
?如果用我們熟悉的for循環(huán)來(lái)做上面reduce的事情,可以這樣來(lái)做:
>>> lst = range(1,6)
>>> lst
[1, 2, 3, 4, 5]
>>> r = 0
>>> for i in range(len(lst)):
...???? r += lst[i]
...
>>> r
15
?for普世的,reduce是簡(jiǎn)潔的。
為了鍛煉思維,看這么一個(gè)問(wèn)題,有兩個(gè)list,a = [3,9,8,5,2],b=[1,4,9,2,6],計(jì)算:a[0]b[0]+a1b1+...的結(jié)果。
>>> a
[3, 9, 8, 5, 2]
>>> b
[1, 4, 9, 2, 6]
>>> zip(a,b)??????? #復(fù)習(xí)一下zip,下面的方法中要用到
[(3, 1), (9, 4), (8, 9), (5, 2), (2, 6)]
>>> sum(x*y for x,y in zip(a,b))??? #解析后直接求和
133
>>> new_list = [x*y for x,y in zip(a,b)]??? #可以看做是上面方法的分布實(shí)施
>>> #這樣解析也可以:new_tuple = (x*y for x,y in zip(a,b))
>>> new_list
[3, 36, 72, 10, 12]
>>> sum(new_list)???? #或者:sum(new_tuple)
133
>>> reduce(lambda sum,(x,y): sum+x*y,zip(a,b),0)??? #這個(gè)方法是在??崮貑??
133
>>> from operator import add,mul??????????? #??岬姆椒ㄒ膊恢挂粋€(gè)
>>> reduce(add,map(mul,a,b))
133
>>> reduce(lambda x,y: x+y, map(lambda x,y: x*y, a,b))? #map,reduce,lambda都齊全了,更酷嗎?
133
?filter
filter的中文含義是“過(guò)濾器”,在python中,它就是起到了過(guò)濾器的作用。首先看官方說(shuō)明:
filter(function, iterable)
Construct a list from those elements of iterable for which function returns true. iterable may be either a sequence, a container which supports iteration, or an iterator. If iterable is a string or a tuple, the result also has that type; otherwise it is always a list. If function is None, the identity function is assumed, that is, all elements of iterable that are false are removed.
Note that filter(function, iterable) is equivalent to [item for item in iterable if function(item)] if function is not None and [item for item in iterable if item] if function is None.
這次真的不翻譯了(好像以往也沒(méi)有怎么翻譯呀),而且也不解釋要點(diǎn)了。請(qǐng)列位務(wù)必自己閱讀上面的文字,并且理解其含義。英語(yǔ),無(wú)論怎么強(qiáng)調(diào)都是不過(guò)分的,哪怕是做乞丐,說(shuō)兩句英語(yǔ),沒(méi)準(zhǔn)還可以討到英鎊美元呢。
通過(guò)下面代碼體會(huì):
>>> numbers = range(-5,5)
>>> numbers
[-5, -4, -3, -2, -1, 0, 1, 2, 3, 4]
>>> filter(lambda x: x>0, numbers)
[1, 2, 3, 4]
>>> [x for x in numbers if x>0]???? #與上面那句等效
[1, 2, 3, 4]
>>> filter(lambda c: c!='i', 'qiwsir')? #能不能對(duì)應(yīng)上面文檔說(shuō)明那句話(huà)呢?
'qwsr'????????????????????????????????? #“If iterable is a string or a tuple, the result also has that type;”
?至此,用兩此介紹了幾個(gè)小函數(shù),這些函數(shù)在對(duì)程序的性能提高上,并沒(méi)有顯著或者穩(wěn)定預(yù)期,但是,在代碼的簡(jiǎn)潔上,是有目共睹的。有時(shí)候是可以用來(lái)秀一秀,彰顯python的優(yōu)雅和自己耍酷。
更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號(hào)聯(lián)系: 360901061
您的支持是博主寫(xiě)作最大的動(dòng)力,如果您喜歡我的文章,感覺(jué)我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對(duì)您有幫助就好】元
