是不是奖越大,致辞时间可以越长?# Movie - 无限影话
S*Y
1 楼
第一个,Given a file with a lot of words (10 million) find out the top 10% m
ost frequently occurring words.
这题我的想法是,先走一遍file, hash到 hash table,key是word, 出现的次数是value
,然后走一边hash table,用一个heap来存频率最高的词。这样就走了两遍,有没有可能
只走一边?比如upodate heap的key,但是heap是不可以寻找的。
第二题,如果输出 第三题,Given a number determine whether the number is sum of consecutive
positive integers, if it is not return false else return true. Consecutive
integers can be from 2 to n。
ost frequently occurring words.
这题我的想法是,先走一遍file, hash到 hash table,key是word, 出现的次数是value
,然后走一边hash table,用一个heap来存频率最高的词。这样就走了两遍,有没有可能
只走一边?比如upodate heap的key,但是heap是不可以寻找的。
第二题,如果输出
positive integers, if it is not return false else return true. Consecutive
integers can be from 2 to n。