在使用MapReduce程序WordCount进行词频统计时,对于文本行“hello master bye master”,经过WordCount程序的Map函数处理后直接输出的中间结果,应该是下面哪种形式:
A. <"hello",1>、<"master",1>、<"bye",1>和<"master",1>
B. <"hello",1>、<"master",2>和<"bye",1>
C. <"master",1,1>、<"hello",1>和<"bye",1>
D. <"master",<1,1>>、<"hello",1>和<"bye",1>