wordcount--scala

Posted djh222

tags:

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

val words:Array[String]=Array("hello tom hello jim","hello hatno hello 菲菲")

words.map(x=>x.split(" "))

   .flatten

   .groupBy(x=>x)

   .map(wdKV=>(wdKV._1,wdKV._2.length))

   .toList.sortBy(t=>t._2)

   .foreach(t=>println(t))

技术图片

 

 

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