【Leetcode_Shell命令】- Leetcode192统计词频教程
【Leetcode\_Shell命令】- Leetcode192统计词频
写一个 bash 脚本以统计一个文本文件 words.txt 中每个单词出现的频率。
为了简单起见,你可以假设:
words.txt只包括小写字母和 ’ ’ 。
每个单词只由小写字母组成。
单词间由一个或多个空格字符分隔。
示例:
假设 words.txt 内容如下:
the day is sunny the the
the sunny is is
你的脚本应当输出(以词频降序排列):
the 4
is 3
sunny 2
day 1
cat words.txt | tr -s ' ' '\n' | sort | uniq -c | sort -r | awk '{print $2 " " $1}'
解释
cat --游览文件
tr -s – 替换字符串(将空格换为换行符),保证了一行一个单词
sort --默认ASCII值排序,排序后还有会重复
uniq --去重,-c输出重复次数
sort -nr -n按照数值的大小排序 -r反向排序就是从大到小
awk 格式输出