由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 灭三个那么难吗?
相关主题
在版上看到的G题刚才的amazon phone interview 第一轮
谷歌 电面题目: iterative binary tree post order traversal
攒人品, Amazon电面binary tree的in-order iterator怎么写?
Bloomberg on-campus interview (failed) 求教A家面经 (三轮电面)
google 电面面经(CS) heapify a binary tree
Binary Tree Level Order Traversal为什么老通不过FB第二轮电面记录
问个老题BinaryTree to DoublyLinkedList
Interview question: Rebuild a tree with DFS output with level问一道google的新题
相关话题的讨论汇总
话题: node话题: currnode话题: binarytree话题: private话题: public
进入JobHunting版参与讨论
1 (共1页)
l*****a
发帖数: 14598
1
刚才面了个contractor
面了道简单的,print binary tree level by level
为节省时间,直接让他去collabedit,我干我的工作

class node{
private int data;
private Node left;
private Node right;
private node parent;
private int level;
public LinkedList listofNode;
public int getData()
{
return this.data;
}
public node getLeftNode()
{
return this.left;

}

public node getRightNode()
{
return this.right;
}
public printTree(Node node )
{
system.out.println(this.node.getData());
if(node.getLeftNode()!=null)
this.printTree(node.getLeftNode());

}
}



}
写了半个小时之后,突然给我仍上来这么一段
void printLevelOrder(BinaryTree *root) {
if (!root) return;
queue currentLevel, nextLevel;
currentLevel.push(root);
while (!currentLevel.empty()) {
BinaryTree *currNode = currentLevel.front();
currentLevel.pop();
if (currNode) {
cout << currNode->data << " ";
nextLevel.push(currNode->left);
nextLevel.push(currNode->right);
}
if (currentLevel.empty()) {
cout << endl;
swap(currentLevel, nextLevel);
}
}
}
我问他你定义的parent node用了吗?
你熟悉的语言是什么? 既然熟悉JAVA为什么来一段C/C++
我问他还有什么问题.然后告诉他我会把feeback告诉recruiter
he said "I think I know"
o**********e
发帖数: 18403
2
表太明显。 做事要有策略。
s*****p
发帖数: 108
3
class的定义是你给的吗?

【在 l*****a 的大作中提到】
: 刚才面了个contractor
: 面了道简单的,print binary tree level by level
: 为节省时间,直接让他去collabedit,我干我的工作
:
: class node{
: private int data;
: private Node left;
: private Node right;
: private node parent;
: private int level;

l*****a
发帖数: 14598
4
显然不是阿
不许埋汰人,hehe

【在 s*****p 的大作中提到】
: class的定义是你给的吗?
h*d
发帖数: 19309
5
dishonest这个非常严重,一定要汇报

【在 l*****a 的大作中提到】
: 刚才面了个contractor
: 面了道简单的,print binary tree level by level
: 为节省时间,直接让他去collabedit,我干我的工作
:
: class node{
: private int data;
: private Node left;
: private Node right;
: private node parent;
: private int level;

m********l
发帖数: 791
6
我已开始以为就是你给的
刷题的一般都是没有parent node的,突然看见有parent node反而有点纠结不好下手

【在 l*****a 的大作中提到】
: 显然不是阿
: 不许埋汰人,hehe

l******e
发帖数: 172
7
It seems that he Googled online and copied-pasted the C++ code to collabedit
?
l*****a
发帖数: 14598
8
obviously yes

collabedit

【在 l******e 的大作中提到】
: It seems that he Googled online and copied-pasted the C++ code to collabedit
: ?

e*****i
发帖数: 182
9
还是见过有整个贴过来的

【在 m********l 的大作中提到】
: 我已开始以为就是你给的
: 刷题的一般都是没有parent node的,突然看见有parent node反而有点纠结不好下手

o**********e
发帖数: 18403
10
收集证据,把里应外合的人都黑掉才
一劳永逸。
l*****a
发帖数: 14598
11
问题是还有贴错的
上次问singleton
不知道怎么回事,出了两行 db connection string related code

【在 e*****i 的大作中提到】
: 还是见过有整个贴过来的
1 (共1页)
进入JobHunting版参与讨论
相关主题
问一道google的新题google 电面面经
Twitter电面未通过Binary Tree Level Order Traversal为什么老通不过
python里面怎么表示树?问个老题
新鲜Amazon面经Interview question: Rebuild a tree with DFS output with level
在版上看到的G题刚才的amazon phone interview 第一轮
谷歌 电面题目: iterative binary tree post order traversal
攒人品, Amazon电面binary tree的in-order iterator怎么写?
Bloomberg on-campus interview (failed) 求教A家面经 (三轮电面)
相关话题的讨论汇总
话题: node话题: currnode话题: binarytree话题: private话题: public