map&reduce

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了map&reduce相关的知识,希望对你有一定的参考价值。

#map list输出

>>> map(str,[1,2,3,4])

[‘1‘, ‘2‘, ‘3‘, ‘4‘]

 

#函数fn
def fn(x,y):
return x*10+y

#函数char2num
>>> def char2num(s):
return{‘0‘:88,‘1‘:77,‘2‘:66}[s]

#reduce fn函数map char2num
>>> reduce(fn,map(char2num,‘012‘))
9636

 

#过程:1.88,77,66 2.88*10+77=957 3.957*10+66=9636

以上是关于map&reduce的主要内容,如果未能解决你的问题,请参考以下文章

MIT6.824 - 01 MapReduce

Map集合&&异常处理&&file类

Map&&iOS里的HashTable和MapTable

python学习笔记 map&&reduce

Post.all.map(&:id) 是啥意思? [复制]

Java集合框架--Map接口概述 & Map接口使用 & entrySet和keySet()遍历map谁的效率更高?