由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 一道Facebook面经难题
相关主题
继续攒人品 报几家面经word search follow up的问题
帖面筋,大小公司都有。再来问一下word search的时间复杂度分析
这道难不难?on-site的时候Trie和suffix tree会考coding吗?
分享一盗题最长回文串
FG nyc 面经请教几道经典题
F M面经L 电面2
A 家两轮电话面试面经攒人品热腾腾的twitter电面经
问一道字符串相关的题目。急问,Boggle (crossword)的解题思路?
相关话题的讨论汇总
话题: palindrome话题: words话题: trie话题: pairs话题: follow
进入JobHunting版参与讨论
1 (共1页)
s*******3
发帖数: 6
1
Given a list of words,find all palindrome pairs(two words that can build a
palindrome). For example, "ddcba" and "abc"are palindrome pairs, since they
can build "abcddcba" which is palindrome.
Follow up,可以组合任意个单词,怎么找到最长的可能的palindrome.
求指导,求讨论。
x*******2
发帖数: 12
2
如果两个词能组成palindrome的话, 那reverse中间短的那个字符串应该是另一个的
prefix
能不能用trie, 然后在trie的node上记录在children都为palindrome的部分.
在建trie的时候, 插入一个string S, 就沿着root开始在S从后往前consume character:
1. 如果S有字符剩余, 那么就判断剩余字符串是否为palindrome, 并在trie的node上标记
2. 如果S没有字符串剩余了, 那返回当前是palindrome的那些字符串
不知道如何做followup...
s***5
发帖数: 2136
3
naïve solution for the original problem, O(n*n*avg(m)), n is # of words
, m is word length
follow-up should be a DP problem, but got confused on the recursive formula.
L*****1
发帖数: 34
4
mark
j*****y
发帖数: 9
5
现在的题越出花样越多,刷题党都不好混了
y**********a
发帖数: 824
6

然。 我就是这样被 fb 的变种题干掉的。

【在 j*****y 的大作中提到】
: 现在的题越出花样越多,刷题党都不好混了
s**x
发帖数: 7506
7
以前讨论过的,关键是建立reverse 单词的trie.细节记不清了。
p**p
发帖数: 742
8
Here is my two cents:
create two tries: trie1 with all words and trie2 with their reversed strings
. For each word, search in the trie1 with the reversed order and also in
trie2 with normal order. If we can find the trie node with the search orders
, do a DFS to find all words rooted at that node. Check all candidates to
see if they form a palindrome.
1 (共1页)
进入JobHunting版参与讨论
相关主题
急问,Boggle (crossword)的解题思路?FG nyc 面经
rejected by facebook after 2nd phone interviewF M面经
面试问题请教:如何在字典中得到最长的复合词A 家两轮电话面试面经攒人品
all my baozi for people can give some answer to the question问一道字符串相关的题目。
继续攒人品 报几家面经word search follow up的问题
帖面筋,大小公司都有。再来问一下word search的时间复杂度分析
这道难不难?on-site的时候Trie和suffix tree会考coding吗?
分享一盗题最长回文串
相关话题的讨论汇总
话题: palindrome话题: words话题: trie话题: pairs话题: follow