java progem查找单词的分布数组
我想找到文件每一行中某个单词的频率。我想对文件中的每个单词执行此操作。我在java中使用BufferedReader和FileReader。
I want to find the frequency of a word in each line of a file. I want to do this for every word in the file. I'm using BufferedReader and FileReader in java.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议两件事:
1)更好地分解你的问题。
您是否想找出每行中单词的频率?或者文件中单词的频率。例如,如果您的输入是:
您想要:
或者您想要
2) 这是您需要的工具
I recommend two things:
1) break down your question better.
Are you trying to find the frequency of words in each line? Or the frequency of words in the file. As in, if your input was :
Would you want:
Or would you want
2) here's the tools you need