由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教一道G家onsite题。。。
相关主题
今天1/9 Amazon onsite,当天晚上收到offer,上面筋报点面经
检查graph里面是否有circle,是用BFS,还是DFS?贡献一道G家onsite题吧
GM面经小公司onsite面经(求bless)
贴点面试题, ms和google的问个面试题
CLRS算法书中BFS的疑问G家关于图的一道题
三道 Amazon Onsite Coding 题 (转载)A tree question
一道变形的Jump题两个有点难度很有意思的题
问一道Uber的电面题用BFS 和 inorder 重构二叉树?
相关话题的讨论汇总
话题: space话题: tree话题: pair话题: onsite话题: 树状
进入JobHunting版参与讨论
1 (共1页)
d********i
发帖数: 582
1
请问下题如何用有向图来实现?谢谢。
题目:
printing a tree structure with giving collection of pairs of child> relation. Need to first find the root, and validate wether the given
relations is a valid tree, and then printing.
问题一: 如何判断有valid tree
问题二: 如果print?
例:
给一个set,里面是一堆pair,每个pair里是两个string,一个first,一个second。
如果这堆pair能够构成一个树状结构,按照一定的格式打印这棵树
first-second关系类似paretnt-child关系
eg
set: (a, b) (b, c) (a, d) (d, e) (d, f) (d, g)
树状结构是root = a, root.left = b, root.right = d blah blah
打印结果:[space] 就是一个空格. 1point3acres.com/bbs
a
[space]b
[space][space]c
[space]d
[space][space]e
[space][space]f
[space][space]g.1
c***z
发帖数: 6348
2
detect cycles? BFS?
l*********8
发帖数: 4642
3
一,indegree为0的是root
从root开始dfs,检测是否访问一个节点两次,如果是,就有cycle,不是tree。
二,dfs, 传一个参数表示level.

given

【在 d********i 的大作中提到】
: 请问下题如何用有向图来实现?谢谢。
: 题目:
: printing a tree structure with giving collection of pairs of : child> relation. Need to first find the root, and validate wether the given
: relations is a valid tree, and then printing.
: 问题一: 如何判断有valid tree
: 问题二: 如果print?
: 例:
: 给一个set,里面是一堆pair,每个pair里是两个string,一个first,一个second。
: 如果这堆pair能够构成一个树状结构,按照一定的格式打印这棵树

s********x
发帖数: 81
4
NB.

【在 l*********8 的大作中提到】
: 一,indegree为0的是root
: 从root开始dfs,检测是否访问一个节点两次,如果是,就有cycle,不是tree。
: 二,dfs, 传一个参数表示level.
:
: given

1 (共1页)
进入JobHunting版参与讨论
相关主题
用BFS 和 inorder 重构二叉树?CLRS算法书中BFS的疑问
弱问怎么判断两个binary tree相同?三道 Amazon Onsite Coding 题 (转载)
好吧,RP总算小爆发了一次一道变形的Jump题
面试题总结(7) - Tree问一道Uber的电面题
今天1/9 Amazon onsite,当天晚上收到offer,上面筋报点面经
检查graph里面是否有circle,是用BFS,还是DFS?贡献一道G家onsite题吧
GM面经小公司onsite面经(求bless)
贴点面试题, ms和google的问个面试题
相关话题的讨论汇总
话题: space话题: tree话题: pair话题: onsite话题: 树状