Word count using MapReduce
Contains: Main.java, Map.java, Reduce.java
Map output (for example):
Chapter 1 (where alice is repeated four times):
Chapter 2 (where alice is repeated once):
Chapter 3 (where alice is repeated twice):
Reduce output (for example):
The output is further modified to store top K = 10 words which are common among all chapters
with more than W = 3 times repetetion of that word in a chapter.
Modified output (for example):
alice => Chapter Number 1 4
alice => Chapter Number 2 1
alice => Chapter Number 3 2