分析

写bash,不太会啊……

难度 中

来源

https://leetcode.com/problems/word-frequency/

题目

Write a bash script to calculate the frequency of each word in a text file words.txt.

For simplicity sake, you may assume:

  • words.txt contains only lowercase characters and space ' ' characters.
  • Each word must consist of lowercase characters only.
  • Words are separated by one or more whitespace characters.

Example:

Assume that words.txt has the following content:

the day is sunny the the
the sunny is is

Your script should output the following, sorted by descending frequency:

the 4
is 3
sunny 2
day 1

Note:

  • Don't worry about handling ties, it is guaranteed that each word's frequency count is unique.
  • Could you write it in one-line using Unix pipes?

解答

https://leetcode.com/problems/word-frequency/discuss/55443/My-simple-solution-(one-line-with-pipe)

 cat words.txt | tr -s ' ' '\n' | sort | uniq -c | sort -r | awk '{ print $2, $1 }'

tr -s: truncate the string with target string, but only remaining one instance (e.g. multiple whitespaces)

sort: To make the same string successive so that uniq could count the same string fully and correctly.

uniq -c: uniq is used to filter out the repeated lines which are successive, -c means counting

sort -r: -r means sorting in descending order

awk '{ print $2, $1 }': To format the output, see here.

最新文章

  1. 简易版的TimSort排序算法
  2. 【emWin】例程六:设置颜色
  3. Url获取图片流并打包~
  4. Bootstrap_排版
  5. Opencv的基础结构与内容
  6. WCF常见异常-The maximum string content length quota (8192) has been exceeded while reading XML data
  7. Codeforces182D - Common Divisors(KMP)
  8. Jenkins用户组管理
  9. zookeeper集群的python代码测试
  10. Swift之GCD使用指南1
  11. 关于引用(python中的伪指针)的理解
  12. 多媒体基础知识之PCM数据《 转》
  13. maven下的jar项目打包的方法
  14. adb shell 命令详解,android, adb logcat
  15. 【2018北京集训6】Lcm DFT&FWT
  16. [译]OpenGL像素缓冲区对象
  17. Xilinx SDK使用教程
  18. 为什么说git比svn好
  19. Apache 配置代理服务
  20. javascript--自定义弹出登陆窗口(弹出窗)

热门文章

  1. JVM内存区域划分Eden Space、Survivor Space、Tenured Gen,Perm Gen解释 (生动形象)
  2. 禁用wps的云文档,恢复到清爽的状态
  3. [HAOI2015]按位或
  4. Python - 格式化字符串的用法
  5. Yii设置Cache缓存的方法
  6. jenkins ansible
  7. 20155314 2016-2017-2 《Java程序设计》第10周学习总结
  8. 使用Ceph集群作为Kubernetes的动态分配持久化存储(转)
  9. # 课下测试ch02
  10. python基础学习1-反射