avatar
r*g
1
Write a function that takes two parameters: (1) a String representing a text
document and (2) an integer providing the number of items to return.
Implement the function such that it returns a list of Strings ordered by
word frequency, the most frequently occurring word first. Use your best
judgment to decide how words are separated. Your solution should run in O(n)
time where n is the number of characters in the document. Implement this
function as you would for a production/commercial system. You may use any
standard data structures.
我想到的是先hashmap 把每个unique的string 的个数保存下来。然后再用heap来找到
K top string。但是时间复杂度就是 nlogK 了。 怎么做到O(n)?
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。