Heres the Hadoop word count java map and reduce source code:
In the map function, I\'ve gotten to where I can output all the word that starts with the letter \"c\" a
Instead of
output.collect(word, one);
in your mapper, try:
output.collect("c-total", one);