由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 攒人品,Amazon 二面面经
相关主题
如何判断两个BST的元素是一样的?[合集] 微软面试的一道题
G电面面经:BT的iterator inorder traversal为何找不到很多apple的面筋
转一些我blog上一些常见的二叉树面试问题和总结leetcode里面的Recover Binary Search Tree怎么用O(1)space
新鲜amazon电面面筋,顺带求bless面了个三哥今天
大概说一下昨天的Google Phone InterviewF家phone interview的一道题
树 inorder下个节点最好办法是啥find kth smallest key in BST with O(lgn)
inorder traversal and BST一个电面疑问
攒人品,amazon一面经历再来bitch一下
相关话题的讨论汇总
话题: inorder话题: two话题: data话题: question
进入JobHunting版参与讨论
1 (共1页)
f***z
发帖数: 65
1
2nd phone interview之后悲剧。下面是面经
1st phone:
Question about the project I listed on my resume
Basic questions on Java, what I can remember includes
(1) difference between stack and heap
(2) inheritance in java
(3) multi-threading
(4) difference between abstract class and interface
Open question, find which 三连击 on Amazon's website is the most popular.
2nd phone:
Question on web application I've developed. How to scale up? How to handle
concurrent requests etc.
Coding question:
(1) implement spell checking function
(2) there are two BSTs, write a program to determine whether they have the
same set of values.
感觉跟amazon的面试官交流的时候气氛很dry,第一个面试官,答完了也没有反馈,接
着问下一道;第二个面试官写完程序也不告诉你他认为怎么样,有没有错什么的。
x****i
发帖数: 531
2
有包子才有人品啊。。。
p*****2
发帖数: 21240
3
(2) there are two BSTs, write a program to determine whether they have the
same set of values.
就是return true or false吗?
f***z
发帖数: 65
4
我所有的包子都在某年某月某日给了别人了。。

【在 x****i 的大作中提到】
: 有包子才有人品啊。。。
f***z
发帖数: 65
5
是嗒。

【在 p*****2 的大作中提到】
: (2) there are two BSTs, write a program to determine whether they have the
: same set of values.
: 就是return true or false吗?

q****x
发帖数: 7404
6
how to do spell checking?

【在 f***z 的大作中提到】
: 2nd phone interview之后悲剧。下面是面经
: 1st phone:
: Question about the project I listed on my resume
: Basic questions on Java, what I can remember includes
: (1) difference between stack and heap
: (2) inheritance in java
: (3) multi-threading
: (4) difference between abstract class and interface
: Open question, find which 三连击 on Amazon's website is the most popular.
: 2nd phone:

c**z
发帖数: 669
7
how to do spell checking
f***z
发帖数: 65
8
我的做法是用一个字典,把字典的词按字母排序,然后建一个hashtable,排过序的字母
序列作为key,所有具有相同entry的词组成一个链表,作为value。当输入一个拼错的
单词时,就可以look up hashtable给出recommendation了。

【在 q****x 的大作中提到】
: how to do spell checking?
q****x
发帖数: 7404
9
没看懂。每个链表都是key的一个排列吗?那你假定拼写错误都是次序错,忽略多输、
少输、输错的情况?

【在 f***z 的大作中提到】
: 我的做法是用一个字典,把字典的词按字母排序,然后建一个hashtable,排过序的字母
: 序列作为key,所有具有相同entry的词组成一个链表,作为value。当输入一个拼错的
: 单词时,就可以look up hashtable给出recommendation了。

s*******n
发帖数: 499
10
有现成的代码
PYTHON的马上就可以用,很好懂
http://norvig.com/spell-correct.html

【在 q****x 的大作中提到】
: 没看懂。每个链表都是key的一个排列吗?那你假定拼写错误都是次序错,忽略多输、
: 少输、输错的情况?

相关主题
树 inorder下个节点最好办法是啥[合集] 微软面试的一道题
inorder traversal and BST为何找不到很多apple的面筋
攒人品,amazon一面经历leetcode里面的Recover Binary Search Tree怎么用O(1)space
进入JobHunting版参与讨论
c**********e
发帖数: 2007
11
bool equal(BinaryTreeNode* one, BinaryTreeNode* two) {
if(!one && !two) return true;
else if(!one && two) return false;
else if(one && !two) return false;
else return (one->data).equal(two->data)
&& equal(one->left,two->left) && equal(one->right,two->right);
}

【在 p*****2 的大作中提到】
: (2) there are two BSTs, write a program to determine whether they have the
: same set of values.
: 就是return true or false吗?

q****x
发帖数: 7404
12
wrong. they can have same data set but different topologies.

【在 c**********e 的大作中提到】
: bool equal(BinaryTreeNode* one, BinaryTreeNode* two) {
: if(!one && !two) return true;
: else if(!one && two) return false;
: else if(one && !two) return false;
: else return (one->data).equal(two->data)
: && equal(one->left,two->left) && equal(one->right,two->right);
: }

f***z
发帖数: 65
13
what I did is inorder traverse and then compared the two sorted array.

【在 q****x 的大作中提到】
: wrong. they can have same data set but different topologies.
f***z
发帖数: 65
14
assume不会有多输,少输,输错的情况。。

【在 q****x 的大作中提到】
: 没看懂。每个链表都是key的一个排列吗?那你假定拼写错误都是次序错,忽略多输、
: 少输、输错的情况?

c**********e
发帖数: 2007
15
How about this one?
void inorder(vector& v, BinaryTreeNode* node) {
if(node) {
inorder(v, node->left);
v.push_back(node->data);
inorder(v, node->right);
}
}
bool equal(BinaryTreeNode* one, BinaryTreeNode* two) {
vector v1, v2;
inorder(v1, one);
inorder(v2, two);
return v1.equal(v2);
}

【在 q****x 的大作中提到】
: wrong. they can have same data set but different topologies.
q****x
发帖数: 7404
16
那您应该加到题目里啊。这假设很重要。

【在 f***z 的大作中提到】
: assume不会有多输,少输,输错的情况。。
q****x
发帖数: 7404
17
yes, this is good.

【在 c**********e 的大作中提到】
: How about this one?
: void inorder(vector& v, BinaryTreeNode* node) {
: if(node) {
: inorder(v, node->left);
: v.push_back(node->data);
: inorder(v, node->right);
: }
: }
: bool equal(BinaryTreeNode* one, BinaryTreeNode* two) {
: vector v1, v2;

p*******4
发帖数: 516
18
顶!
s******n
发帖数: 3946
19
using too many spaces if the tree is huge.

【在 c**********e 的大作中提到】
: How about this one?
: void inorder(vector& v, BinaryTreeNode* node) {
: if(node) {
: inorder(v, node->left);
: v.push_back(node->data);
: inorder(v, node->right);
: }
: }
: bool equal(BinaryTreeNode* one, BinaryTreeNode* two) {
: vector v1, v2;

q****x
发帖数: 7404
20
then traverse tree x and query tree b.

【在 s******n 的大作中提到】
: using too many spaces if the tree is huge.
相关主题
面了个三哥今天一个电面疑问
F家phone interview的一道题再来bitch一下
find kth smallest key in BST with O(lgn)恢复错误的BST
进入JobHunting版参与讨论
s******n
发帖数: 3946
21
依然大,最好的办法是用2个stack同时in-order traverse,当然对写代码要求就比递
归高了

【在 q****x 的大作中提到】
: then traverse tree x and query tree b.
q****x
发帖数: 7404
22
怎么会大?那样可以O(1)。
用stack worst case也是O(N)开销吧。

【在 s******n 的大作中提到】
: 依然大,最好的办法是用2个stack同时in-order traverse,当然对写代码要求就比递
: 归高了

b*********3
发帖数: 748
23
a)遍历第一棵树,建一个hashtable,每个数字对应出现次数
b)遍历第二棵树,递减hashtable里相应数字的出现次数。如果hashtable里没有,就返
回false。当一个数字出现次数为0就remove。最后如果hashtable空,就表示一样。

【在 q****x 的大作中提到】
: 怎么会大?那样可以O(1)。
: 用stack worst case也是O(N)开销吧。

g****n
发帖数: 194
24
amazon jobs:
http://jobguiding.com/it-jobs/it-companies/amazon.html

【在 f***z 的大作中提到】
: 2nd phone interview之后悲剧。下面是面经
: 1st phone:
: Question about the project I listed on my resume
: Basic questions on Java, what I can remember includes
: (1) difference between stack and heap
: (2) inheritance in java
: (3) multi-threading
: (4) difference between abstract class and interface
: Open question, find which 三连击 on Amazon's website is the most popular.
: 2nd phone:

p*****2
发帖数: 21240
25
三连击这题有人说说吗?
H***e
发帖数: 476
26
This is not inorder traversal

【在 f***z 的大作中提到】
: what I did is inorder traverse and then compared the two sorted array.
c**********e
发帖数: 2007
27
Why? Do not understand it.

【在 H***e 的大作中提到】
: This is not inorder traversal
l*****a
发帖数: 14598
28
are there duplicate in binary tree?

【在 b*********3 的大作中提到】
: a)遍历第一棵树,建一个hashtable,每个数字对应出现次数
: b)遍历第二棵树,递减hashtable里相应数字的出现次数。如果hashtable里没有,就返
: 回false。当一个数字出现次数为0就remove。最后如果hashtable空,就表示一样。

f***z
发帖数: 65
29
2nd phone interview之后悲剧。下面是面经
1st phone:
Question about the project I listed on my resume
Basic questions on Java, what I can remember includes
(1) difference between stack and heap
(2) inheritance in java
(3) multi-threading
(4) difference between abstract class and interface
Open question, find which 三连击 on Amazon's website is the most popular.
2nd phone:
Question on web application I've developed. How to scale up? How to handle
concurrent requests etc.
Coding question:
(1) implement spell checking function
(2) there are two BSTs, write a program to determine whether they have the
same set of values.
感觉跟amazon的面试官交流的时候气氛很dry,第一个面试官,答完了也没有反馈,接
着问下一道;第二个面试官写完程序也不告诉你他认为怎么样,有没有错什么的。
x****i
发帖数: 531
30
有包子才有人品啊。。。
相关主题
吐槽一个面试G电面面经:BT的iterator inorder traversal
我想了想转一些我blog上一些常见的二叉树面试问题和总结
如何判断两个BST的元素是一样的?新鲜amazon电面面筋,顺带求bless
进入JobHunting版参与讨论
p*****2
发帖数: 21240
31
(2) there are two BSTs, write a program to determine whether they have the
same set of values.
就是return true or false吗?
f***z
发帖数: 65
32
我所有的包子都在某年某月某日给了别人了。。

【在 x****i 的大作中提到】
: 有包子才有人品啊。。。
f***z
发帖数: 65
33
是嗒。

【在 p*****2 的大作中提到】
: (2) there are two BSTs, write a program to determine whether they have the
: same set of values.
: 就是return true or false吗?

q****x
发帖数: 7404
34
how to do spell checking?

【在 f***z 的大作中提到】
: 2nd phone interview之后悲剧。下面是面经
: 1st phone:
: Question about the project I listed on my resume
: Basic questions on Java, what I can remember includes
: (1) difference between stack and heap
: (2) inheritance in java
: (3) multi-threading
: (4) difference between abstract class and interface
: Open question, find which 三连击 on Amazon's website is the most popular.
: 2nd phone:

c**z
发帖数: 669
35
how to do spell checking
f***z
发帖数: 65
36
我的做法是用一个字典,把字典的词按字母排序,然后建一个hashtable,排过序的字母
序列作为key,所有具有相同entry的词组成一个链表,作为value。当输入一个拼错的
单词时,就可以look up hashtable给出recommendation了。

【在 q****x 的大作中提到】
: how to do spell checking?
q****x
发帖数: 7404
37
没看懂。每个链表都是key的一个排列吗?那你假定拼写错误都是次序错,忽略多输、
少输、输错的情况?

【在 f***z 的大作中提到】
: 我的做法是用一个字典,把字典的词按字母排序,然后建一个hashtable,排过序的字母
: 序列作为key,所有具有相同entry的词组成一个链表,作为value。当输入一个拼错的
: 单词时,就可以look up hashtable给出recommendation了。

s*******n
发帖数: 499
38
有现成的代码
PYTHON的马上就可以用,很好懂
http://norvig.com/spell-correct.html

【在 q****x 的大作中提到】
: 没看懂。每个链表都是key的一个排列吗?那你假定拼写错误都是次序错,忽略多输、
: 少输、输错的情况?

c**********e
发帖数: 2007
39
bool equal(BinaryTreeNode* one, BinaryTreeNode* two) {
if(!one && !two) return true;
else if(!one && two) return false;
else if(one && !two) return false;
else return (one->data).equal(two->data)
&& equal(one->left,two->left) && equal(one->right,two->right);
}

【在 p*****2 的大作中提到】
: (2) there are two BSTs, write a program to determine whether they have the
: same set of values.
: 就是return true or false吗?

q****x
发帖数: 7404
40
wrong. they can have same data set but different topologies.

【在 c**********e 的大作中提到】
: bool equal(BinaryTreeNode* one, BinaryTreeNode* two) {
: if(!one && !two) return true;
: else if(!one && two) return false;
: else if(one && !two) return false;
: else return (one->data).equal(two->data)
: && equal(one->left,two->left) && equal(one->right,two->right);
: }

相关主题
新鲜amazon电面面筋,顺带求blessinorder traversal and BST
大概说一下昨天的Google Phone Interview攒人品,amazon一面经历
树 inorder下个节点最好办法是啥[合集] 微软面试的一道题
进入JobHunting版参与讨论
f***z
发帖数: 65
41
what I did is inorder traverse and then compared the two sorted array.

【在 q****x 的大作中提到】
: wrong. they can have same data set but different topologies.
f***z
发帖数: 65
42
assume不会有多输,少输,输错的情况。。

【在 q****x 的大作中提到】
: 没看懂。每个链表都是key的一个排列吗?那你假定拼写错误都是次序错,忽略多输、
: 少输、输错的情况?

c**********e
发帖数: 2007
43
How about this one?
void inorder(vector& v, BinaryTreeNode* node) {
if(node) {
inorder(v, node->left);
v.push_back(node->data);
inorder(v, node->right);
}
}
bool equal(BinaryTreeNode* one, BinaryTreeNode* two) {
vector v1, v2;
inorder(v1, one);
inorder(v2, two);
return v1.equal(v2);
}

【在 q****x 的大作中提到】
: wrong. they can have same data set but different topologies.
q****x
发帖数: 7404
44
那您应该加到题目里啊。这假设很重要。

【在 f***z 的大作中提到】
: assume不会有多输,少输,输错的情况。。
q****x
发帖数: 7404
45
yes, this is good.

【在 c**********e 的大作中提到】
: How about this one?
: void inorder(vector& v, BinaryTreeNode* node) {
: if(node) {
: inorder(v, node->left);
: v.push_back(node->data);
: inorder(v, node->right);
: }
: }
: bool equal(BinaryTreeNode* one, BinaryTreeNode* two) {
: vector v1, v2;

p*******4
发帖数: 516
46
顶!
s******n
发帖数: 3946
47
using too many spaces if the tree is huge.

【在 c**********e 的大作中提到】
: How about this one?
: void inorder(vector& v, BinaryTreeNode* node) {
: if(node) {
: inorder(v, node->left);
: v.push_back(node->data);
: inorder(v, node->right);
: }
: }
: bool equal(BinaryTreeNode* one, BinaryTreeNode* two) {
: vector v1, v2;

q****x
发帖数: 7404
48
then traverse tree x and query tree b.

【在 s******n 的大作中提到】
: using too many spaces if the tree is huge.
s******n
发帖数: 3946
49
依然大,最好的办法是用2个stack同时in-order traverse,当然对写代码要求就比递
归高了

【在 q****x 的大作中提到】
: then traverse tree x and query tree b.
q****x
发帖数: 7404
50
怎么会大?那样可以O(1)。
用stack worst case也是O(N)开销吧。

【在 s******n 的大作中提到】
: 依然大,最好的办法是用2个stack同时in-order traverse,当然对写代码要求就比递
: 归高了

相关主题
为何找不到很多apple的面筋F家phone interview的一道题
leetcode里面的Recover Binary Search Tree怎么用O(1)spacefind kth smallest key in BST with O(lgn)
面了个三哥今天一个电面疑问
进入JobHunting版参与讨论
b*********3
发帖数: 748
51
a)遍历第一棵树,建一个hashtable,每个数字对应出现次数
b)遍历第二棵树,递减hashtable里相应数字的出现次数。如果hashtable里没有,就返
回false。当一个数字出现次数为0就remove。最后如果hashtable空,就表示一样。

【在 q****x 的大作中提到】
: 怎么会大?那样可以O(1)。
: 用stack worst case也是O(N)开销吧。

g****n
发帖数: 194
52
amazon jobs:
http://jobguiding.com/it-jobs/it-companies/amazon.html

【在 f***z 的大作中提到】
: 2nd phone interview之后悲剧。下面是面经
: 1st phone:
: Question about the project I listed on my resume
: Basic questions on Java, what I can remember includes
: (1) difference between stack and heap
: (2) inheritance in java
: (3) multi-threading
: (4) difference between abstract class and interface
: Open question, find which 三连击 on Amazon's website is the most popular.
: 2nd phone:

p*****2
发帖数: 21240
53
三连击这题有人说说吗?
H***e
发帖数: 476
54
This is not inorder traversal

【在 f***z 的大作中提到】
: what I did is inorder traverse and then compared the two sorted array.
c**********e
发帖数: 2007
55
Why? Do not understand it.

【在 H***e 的大作中提到】
: This is not inorder traversal
l*****a
发帖数: 14598
56
are there duplicate in binary tree?

【在 b*********3 的大作中提到】
: a)遍历第一棵树,建一个hashtable,每个数字对应出现次数
: b)遍历第二棵树,递减hashtable里相应数字的出现次数。如果hashtable里没有,就返
: 回false。当一个数字出现次数为0就remove。最后如果hashtable空,就表示一样。

s*********5
发帖数: 514
57
最后一道题也问我了,就是in-order写两个数组,然后比一遍。
对方夸我code is clear, easy to follow, 反而对是否最优化space不是很care
1 (共1页)
进入JobHunting版参与讨论
相关主题
再来bitch一下大概说一下昨天的Google Phone Interview
恢复错误的BST树 inorder下个节点最好办法是啥
吐槽一个面试inorder traversal and BST
我想了想攒人品,amazon一面经历
如何判断两个BST的元素是一样的?[合集] 微软面试的一道题
G电面面经:BT的iterator inorder traversal为何找不到很多apple的面筋
转一些我blog上一些常见的二叉树面试问题和总结leetcode里面的Recover Binary Search Tree怎么用O(1)space
新鲜amazon电面面筋,顺带求bless面了个三哥今天
相关话题的讨论汇总
话题: inorder话题: two话题: data话题: question