由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Bloomerg 还没放弃我。 电话二面经过。
相关主题
面经: bloomberg 电面贴一道take home的面试题
请教一个C++的题目,谢谢今早Bloomberg电话面试经过,奉献给大家。。。
请问这个C++问题对吗?新Qualcomm面经
C++ Q47: protected constructor (C39)再帖一遍Amazon Onsite的题
c++问题Bloomberg网上测试题
刚刚结束的linkedIn电面问几个跟C++有关的面试题
请教 Iterator 一题包子呼唤大牛--问关于C++Destructor的问题 (转载)
Qualcomm Phone Interbview面筋,赚RP问个C++的题目
相关话题的讨论汇总
话题: sort话题: file话题: list话题: text话题: given
进入JobHunting版参与讨论
1 (共1页)
s*****n
发帖数: 956
1
write copy constructor. When should provide a copy constructor.
default methods of a class provided by compiler.
how to call C funcs from C++
design patterns. singleton.
virtual, pure virtual, how implemented.
find the middle of a single linked list.
given a large text file,find all the anagrams.
given a list of words and a text file. fine all words in the file but not
in the list.
最后两个题目我都瞎扯的, 我就说sort这个sort那个,然后找。
哪位大牛帮忙告诉我有什么好的解法吗?
s****h
发帖数: 15
2
>> given a large text file,find all the anagrams.
先alphabetical sort 每个word, 再sort所有的word?
记得programming pearls 里面有这道题目的。
>>given a list of words and a text file. fine all words in the file but not
>>in the list.
Hashmap?
e******d
发帖数: 310
3

>>> sort each word; the sorted word is used for a signature/key of the
original word, then sort
hash table??

【在 s*****n 的大作中提到】
: write copy constructor. When should provide a copy constructor.
: default methods of a class provided by compiler.
: how to call C funcs from C++
: design patterns. singleton.
: virtual, pure virtual, how implemented.
: find the middle of a single linked list.
: given a large text file,find all the anagrams.
: given a list of words and a text file. fine all words in the file but not
: in the list.
: 最后两个题目我都瞎扯的, 我就说sort这个sort那个,然后找。

s*****n
发帖数: 956
4
I think hash would work.
p********7
发帖数: 549
5
倒数第二个题可以用hash table,对于不同长度的单词使用不同的table,a = 1;b
= 51;c= 101;d = 151;这么定义字母,人那还cab = 1 + 51+101 = 153;
对于三个字母的组合,如果是anagram肯定是同样的值。
如果你想对于每个单词都排序了再做,复杂度太高了,至少都是nLogN
最后一个直接用hash table。 把textfile的词都装到table,然后再find list的词,
如果找到就删除,如果没找到就什么都不干。最后table留下的就是答案。

【在 s*****n 的大作中提到】
: write copy constructor. When should provide a copy constructor.
: default methods of a class provided by compiler.
: how to call C funcs from C++
: design patterns. singleton.
: virtual, pure virtual, how implemented.
: find the middle of a single linked list.
: given a large text file,find all the anagrams.
: given a list of words and a text file. fine all words in the file but not
: in the list.
: 最后两个题目我都瞎扯的, 我就说sort这个sort那个,然后找。

P*******b
发帖数: 1001
6
什么职位?怎么会有两次电面呢

【在 s*****n 的大作中提到】
: write copy constructor. When should provide a copy constructor.
: default methods of a class provided by compiler.
: how to call C funcs from C++
: design patterns. singleton.
: virtual, pure virtual, how implemented.
: find the middle of a single linked list.
: given a large text file,find all the anagrams.
: given a list of words and a text file. fine all words in the file but not
: in the list.
: 最后两个题目我都瞎扯的, 我就说sort这个sort那个,然后找。

1 (共1页)
进入JobHunting版参与讨论
相关主题
问个C++的题目c++问题
C++ constructor problem刚刚结束的linkedIn电面
问个C++重新编译的问题请教 Iterator 一题
一道 C++ 的题。Qualcomm Phone Interbview面筋,赚RP
面经: bloomberg 电面贴一道take home的面试题
请教一个C++的题目,谢谢今早Bloomberg电话面试经过,奉献给大家。。。
请问这个C++问题对吗?新Qualcomm面经
C++ Q47: protected constructor (C39)再帖一遍Amazon Onsite的题
相关话题的讨论汇总
话题: sort话题: file话题: list话题: text话题: given