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 | |
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 | |
l*****a 发帖数: 14598 | 11 问题是还有贴错的
上次问singleton
不知道怎么回事,出了两行 db connection string related code
【在 e*****i 的大作中提到】 : 还是见过有整个贴过来的
|