Scala

复制代码
package test_30.test_32

import java.io.PrintWriter
import scala.io.Source
object test {
  def main(args: Array[String]): Unit = {
    val content=Source.fromFile("1.txt").mkString
    println(content)
    //把字符串中的每个单词,找出来
    //正
  val arr=content.split("\\W+")//得到是一个字符串数组
    arr.foreach(println)
    val arr1=Array("thank","you","very","much","thank","very")
    val m1=scala.collection.mutable.Map[String,Int]()
    arr1.foreach(word => {
      //检查是否出现过
      if (m1.contains(word)) {
        //把票数+1
        m1(word) += 1
      }else{
        //票数为1
        m1(word)=1
      }
    })
    //对于m1,他是一个Map(thank:10,is:5),现在需要对他进行排序,把出现次数最多的放在最前面,然后在输出
    //(thank,10)
    //只要排序之前的结果的前15个?在List中取出前15个?
    val sortedM1=m1.toList.filter(a => a._1.length > 2).sortWith((a, b) => a._2 > b._2).slice(0,15)
    //开始写入
    val writer=new PrintWriter("3.txt")
    //输出排序后的Map
    //把结果保存到一个新的文件中
    writer.println("统计的结果是:")

    sortedM1.foreach{case (word,cishu)=> println(s"${word}: ${cishu}")
      writer.close()//结束写入
      //把结果保存到一个新的文件中:

    }
  }
}
相关推荐
沐知全栈开发7 小时前
HTML5 浏览器支持
开发语言
wasp5207 小时前
AgentScope Java 核心架构深度解析
java·开发语言·人工智能·架构·agentscope
WHOVENLY7 小时前
【javaScript】- 笔试题合集(长期更新,建议收藏,目前已更新至31题)
开发语言·前端·javascript
慌糖8 小时前
流-为序列化解释
开发语言
LXS_3578 小时前
Day 18 C++提高 之 STL常用容器(string、vector、deque)
开发语言·c++·笔记·学习方法·改行学it
王琦03189 小时前
Python 函数详解
开发语言·python
胡伯来了9 小时前
13. Python打包工具- setuptools
开发语言·python
小鸡吃米…9 小时前
Python 中的多层继承
开发语言·python
deng-c-f9 小时前
Linux C/C++ 学习日记(53):原子操作(二):实现shared_ptr
开发语言·c++·学习
wanghowie9 小时前
01.07 Java基础篇|函数式编程与语言新特性总览
java·开发语言·面试