由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 一道 Java 面试题
相关主题
问一道少见的微软面试题。我的面试题总结
请教一道面试题,判断迷宫有没有解感慨下找工作中的运气成分
问个google的面试题。贡献一道面试题.
一道面试题目前系统的刷题,题目分类化,求咨询。
贴点面试题, ms和google的你们工作中究竟用没用上刷题得到的经验?
讨论一道面试题一道狗家面试题。infinite matrix search
面试题总结(7) - Tree请教一道onsite面试题
求牛人指点a家面试题这个facebook puzzle样题怎么做?
相关话题的讨论汇总
话题: employee话题: employees话题: array话题: given话题: string
进入JobHunting版参与讨论
1 (共1页)
a****n
发帖数: 26
1
Given a company structure where every employee reports to a superior, all
the way up to the CEO,
how would you print out all the employees that a particular individual
oversees?
Write a method that implements this, given the below:
//Employee object contains a string denoting the employee name, and an //
array containing employees who report to this employee
Employee {
String name;
Array employees;
}
求思路,感觉不应该是binary tree.
l**s
发帖数: 421
2
DFS
h*********o
发帖数: 230
3


【在 l**s 的大作中提到】
: DFS
m*****n
发帖数: 2152
4
这是一个多叉树阿。

【在 a****n 的大作中提到】
: Given a company structure where every employee reports to a superior, all
: the way up to the CEO,
: how would you print out all the employees that a particular individual
: oversees?
: Write a method that implements this, given the below:
: //Employee object contains a string denoting the employee name, and an //
: array containing employees who report to this employee
: Employee {
: String name;
: Array employees;

m*****g
发帖数: 71
5
BFS/DFS应该都可以吧
1 (共1页)
进入JobHunting版参与讨论
相关主题
这个facebook puzzle样题怎么做?贴点面试题, ms和google的
offer报告 (附带找工作感言)讨论一道面试题
[面试题] 如何打印一个二叉树level by level?面试题总结(7) - Tree
检查graph里面是否有circle,是用BFS,还是DFS?求牛人指点a家面试题
问一道少见的微软面试题。我的面试题总结
请教一道面试题,判断迷宫有没有解感慨下找工作中的运气成分
问个google的面试题。贡献一道面试题.
一道面试题目前系统的刷题,题目分类化,求咨询。
相关话题的讨论汇总
话题: employee话题: employees话题: array话题: given话题: string