码迷,mamicode.com
首页 > 其他好文 > 详细

wordcount--scala

时间:2019-12-06 13:47:22      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:reac   mamicode   string   int   map   each   count   flatten   tom   

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

标签:reac   mamicode   string   int   map   each   count   flatten   tom   

原文地址:https://www.cnblogs.com/djh222/p/11994508.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!