由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教一道题
相关主题
google面经问个anagram的问题
Yelp offer求教,附面经一道G家店面题
facebook telephone interview from careercup请问我写的这个代码哪可以改进一下
leetcode上遇到的问题eBay SDET 电面面经
Bloomerg 还没放弃我。 电话二面经过。帕兰提尔 电面面经
google phone interviewAmazon 面经
问个anagram的题目啊LC anagrams题目有问题吧?
关于anagram的老题?Uber 电面 面经
相关话题的讨论汇总
话题: anagram话题: str话题: set1话题: set2话题: 道题
进入JobHunting版参与讨论
1 (共1页)
c****s
发帖数: 241
1
write function to check whether two words are anagram or not.
do you have good solution for this problem?
l*****a
发帖数: 14598
2
1)extra memory
str['a']..str['z']=0;
scan the first word,update array str.
scan the 2nd ,update str..
2)sort each word by itself,then string compare
3)assign the 1st ->26th prime number to 'a','b'...'z'
get the result of multiply each letter for each word
then compare.this may cause overflow

【在 c****s 的大作中提到】
: write function to check whether two words are anagram or not.
: do you have good solution for this problem?

b******g
发帖数: 1721
3
collect letters to set1 from word1
collect letters to set2 from word2
if set1==set2, then anagram ; otherwise not.
b******g
发帖数: 1721
4
open eyes.

【在 l*****a 的大作中提到】
: 1)extra memory
: str['a']..str['z']=0;
: scan the first word,update array str.
: scan the 2nd ,update str..
: 2)sort each word by itself,then string compare
: 3)assign the 1st ->26th prime number to 'a','b'...'z'
: get the result of multiply each letter for each word
: then compare.this may cause overflow

c****s
发帖数: 241
5
领教,领教。给你一个包子,请查收

【在 l*****a 的大作中提到】
: 1)extra memory
: str['a']..str['z']=0;
: scan the first word,update array str.
: scan the 2nd ,update str..
: 2)sort each word by itself,then string compare
: 3)assign the 1st ->26th prime number to 'a','b'...'z'
: get the result of multiply each letter for each word
: then compare.this may cause overflow

s********y
发帖数: 3811
6
u r so strong.

【在 l*****a 的大作中提到】
: 1)extra memory
: str['a']..str['z']=0;
: scan the first word,update array str.
: scan the 2nd ,update str..
: 2)sort each word by itself,then string compare
: 3)assign the 1st ->26th prime number to 'a','b'...'z'
: get the result of multiply each letter for each word
: then compare.this may cause overflow

l**u
发帖数: 368
7
这个可以归类为
就是所有的anagram都会映射到同一个key上去。
比如
dog
god
都能映射到dgo

【在 c****s 的大作中提到】
: write function to check whether two words are anagram or not.
: do you have good solution for this problem?

1 (共1页)
进入JobHunting版参与讨论
相关主题
Uber 电面 面经Bloomerg 还没放弃我。 电话二面经过。
F家电面:group Anagramsgoogle phone interview
LC: anagram为何忽略single element?问个anagram的题目啊
问一个Anagram的参考程序关于anagram的老题?
google面经问个anagram的问题
Yelp offer求教,附面经一道G家店面题
facebook telephone interview from careercup请问我写的这个代码哪可以改进一下
leetcode上遇到的问题eBay SDET 电面面经
相关话题的讨论汇总
话题: anagram话题: str话题: set1话题: set2话题: 道题