由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教一道题
相关主题
Hot startup coding test 的问题刚刚面的bloomber Inter,应该没戏了,上 面筋。。
Amazon 电面求一个面试题解答。。
一道题L家电面面经,估计挂了
一道电面题,分享下, 这个题应该用哪几个data structure?请教 HashMap implementation 标准答案。。
Java programming questionms onsite面经
amazon 一道题请教一个新鲜算法面试题
An Old Question -- Top N Occurance Frequancefacebook一题
关于Implement hashtable的问题文件可以随机读哪一行吗?
相关话题的讨论汇总
话题: word话题: hashmap话题: frequency话题: heap话题: document
进入JobHunting版参与讨论
1 (共1页)
D***0
发帖数: 138
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.Your solution
should run in O(n) time where n is the number of characters in the document.
这个是不是就是设置个大小为k的min-heap,先扫一遍统计每个word的frequency,放到
hashmap中,然后在扫一遍hashmap,然后放到min-heap中。那这种做法的复杂度是O(n
+ mlogk + klogk)是吧,也就是要求的O(n),因为k是输入的,m是word的个数。谢谢。
1 (共1页)
进入JobHunting版参与讨论
相关主题
文件可以随机读哪一行吗?Java programming question
话说今天面了一老印amazon 一道题
问一道JAVA面试题目An Old Question -- Top N Occurance Frequance
白板面试还是Python比较实用关于Implement hashtable的问题
Hot startup coding test 的问题刚刚面的bloomber Inter,应该没戏了,上 面筋。。
Amazon 电面求一个面试题解答。。
一道题L家电面面经,估计挂了
一道电面题,分享下, 这个题应该用哪几个data structure?请教 HashMap implementation 标准答案。。
相关话题的讨论汇总
话题: word话题: hashmap话题: frequency话题: heap话题: document