一、问题描述
统计每个单词在各个文件中出现的次数。
二、所给数据
1. 输入数据:
a.txt: b.txt
hello tom hello jerry
hello jerry hello tom
hello kitty hello world
hello world
hello tom
2.输出数据
hello a.txt->5 b.txt->3
jerry a.txt->1 b.txt->1
tom a.txt->1 b.txt->2
world a.txt->1 b.txt->1
kitty b.txt->1
三、问题思路(在伪分布式模式下ÿ