由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Hot startup coding test 的问题
相关主题
请教一道题An Old Question -- Top N Occurance Frequance
一道题请教一个新鲜算法面试题
Amazon 电面facebook一题
请教一个题Common Ancestor(不是tree)文件可以随机读哪一行吗?
一道电面题,分享下, 这个题应该用哪几个data structure?话说今天面了一老印
一道design题问一道JAVA面试题目
Java programming question白板面试还是Python比较实用
amazon 一道题关于Implement hashtable的问题
相关话题的讨论汇总
话题: implement话题: hot话题: function话题: coding话题: use
进入JobHunting版参与讨论
1 (共1页)
j*******r
发帖数: 201
1
一家hot startup,coding question:
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
judgement 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.
有什么好的解法吗?
k*****o
发帖数: 43
2
不能hashmap统计词频后 用MinPQ 滤掉其他的么
j*******r
发帖数: 201
3
我就是这样做的,但是被告知不满意。 是否有更好的解法?

【在 k*****o 的大作中提到】
: 不能hashmap统计词频后 用MinPQ 滤掉其他的么
s**x
发帖数: 7506
4

Hashmap 统计之后就成了单纯的排序问题了,我想可以用selection algorithm for
top k.

【在 j*******r 的大作中提到】
: 我就是这样做的,但是被告知不满意。 是否有更好的解法?
1 (共1页)
进入JobHunting版参与讨论
相关主题
关于Implement hashtable的问题一道电面题,分享下, 这个题应该用哪几个data structure?
大家帮我看看这个程序哪里有问题啊!!一道design题
刚刚面的bloomber Inter,应该没戏了,上 面筋。。Java programming question
问一道题的优化以及时间复杂度amazon 一道题
请教一道题An Old Question -- Top N Occurance Frequance
一道题请教一个新鲜算法面试题
Amazon 电面facebook一题
请教一个题Common Ancestor(不是tree)文件可以随机读哪一行吗?
相关话题的讨论汇总
话题: implement话题: hot话题: function话题: coding话题: use