[leetcode shell]192. Word Frequency
Posted wilderness
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode shell]192. Word Frequency相关的知识,希望对你有一定的参考价值。
统计words.txt中每个单词出现的次数并排序
解法1:
cat words.txt | tr -s ‘ ‘ ‘\n‘ | sort | uniq -c | sort -r | awk ‘{print $2,$1}‘
解法2:
cat words.txt | awk ‘{for(i=1;i<=NF;i++){count[$i]++}}END{for (i in count){print i,count[i]}}‘ | sort -k2nr
以上是关于[leetcode shell]192. Word Frequency的主要内容,如果未能解决你的问题,请参考以下文章
⭐️ LeetCode解题系列 ⭐️ 192. 统计词频(Shell)
⭐️ LeetCode解题系列 ⭐️ 192. 统计词频(Shell)
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行