由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 请教find number of duplicates in a binary search tree
相关主题
这个Binary Tree的题来看看Lowest common ancestor of two nodes of Binary Tree
从tree的post order traversal和pre,能否build这个tree?Unique Binary Search Trees II的复杂度怎么算啊?多谢!
讨论个Binary search tree的题目请教LEETCODE讲解部分的LCA一道题的变种。。
non recursive binary tree traversal in O(n) time and O(1) space求教一道老题
binary tree, sum of 2 nodes == given number请问一个简单的面试题
recovery BST 不考虑相同值的情况么?这个check whether a binary tree is a BST 问题
bloomberg onsite题转一些我blog上一些常见的二叉树面试问题和总结
问道题,binary tree里有一个有indegree 2判断 bst 疑问
相关话题的讨论汇总
话题: duplicates话题: tree话题: number话题: binary话题: search
进入JobHunting版参与讨论
1 (共1页)
o******e
发帖数: 1001
1
这个题目好像leetcode里没有,网上的答案也五花八门。有没有人能帮我写一下?最好
用java,不能用in-order traversal.
谢谢!
A******g
发帖数: 612
2
有空间要求吗?
没有的话,任何order traversal把一个放hash table里,然后任何order扫另一个

【在 o******e 的大作中提到】
: 这个题目好像leetcode里没有,网上的答案也五花八门。有没有人能帮我写一下?最好
: 用java,不能用in-order traversal.
: 谢谢!

u*****o
发帖数: 1224
3
一个,另一个是什么? 不就一个TREE吗?
为啥还要再扫一遍呢?放的过程中如果已经有了,直接RETURN这个NODE不就行了吗。。
o******e
发帖数: 1001
4
有空间要求,O(1).基本思路只能用recursive方法。

【在 A******g 的大作中提到】
: 有空间要求吗?
: 没有的话,任何order traversal把一个放hash table里,然后任何order扫另一个

c********p
发帖数: 1969
5
我先来mark一下。
p*****2
发帖数: 21240
6

为什么不能in-order?

【在 o******e 的大作中提到】
: 有空间要求,O(1).基本思路只能用recursive方法。
k*j
发帖数: 153
7
题目能不能再clarify一下?如果有好几个不同的unique duplicate呢?是return
total number of unique duplicate?
o******e
发帖数: 1001
8
对,好几个不同node的duplicates, return the number of duplicates for all the
nodes in the tree.
其实就是这个题目:
http://www.careercup.com/question?id=14462692

【在 k*j 的大作中提到】
: 题目能不能再clarify一下?如果有好几个不同的unique duplicate呢?是return
: total number of unique duplicate?

s******n
发帖数: 20
9
这个题的例子根本就不是BST: The right subtree of a node contains only nodes
with keys greater than the node's key.

the

【在 o******e 的大作中提到】
: 对,好几个不同node的duplicates, return the number of duplicates for all the
: nodes in the tree.
: 其实就是这个题目:
: http://www.careercup.com/question?id=14462692

r*********n
发帖数: 4553
10
不管是recursive还是iterative in order tranversal都不是O(1) space。

【在 p*****2 的大作中提到】
:
: 为什么不能in-order?

1 (共1页)
进入JobHunting版参与讨论
相关主题
判断 bst 疑问binary tree, sum of 2 nodes == given number
也被A电了一下recovery BST 不考虑相同值的情况么?
recover binary search tree 常数空间bloomberg onsite题
Find the node with given value in binary tree in in-order问道题,binary tree里有一个有indegree 2
这个Binary Tree的题来看看Lowest common ancestor of two nodes of Binary Tree
从tree的post order traversal和pre,能否build这个tree?Unique Binary Search Trees II的复杂度怎么算啊?多谢!
讨论个Binary search tree的题目请教LEETCODE讲解部分的LCA一道题的变种。。
non recursive binary tree traversal in O(n) time and O(1) space求教一道老题
相关话题的讨论汇总
话题: duplicates话题: tree话题: number话题: binary话题: search