由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 那个双堆求median的能不能这样做?
相关主题
How can one determine whether a singly linked list has a cycle?问个二叉树删除结点的问题
c/c++ double pointer研究CCI 4.2 答案是不是错了,不是一次bfs 而是要 2次 dfs的
问最小窗口覆盖的面试题报Google Offer并请教面试题
Least Common Ancester算法最优解一道题:2个BST,按大小顺序打印两棵树的所有节点
问一个题目LCA复杂度是多少
A onsite被拒,面经,求分析失败原因LCA复杂度
150上这个是不是不对? (转载)发现一个很恶心的基础问题
面试的时候 binary tree的delete也要15分钟之内写完么?MS onsite面经
相关话题的讨论汇总
话题: node2话题: node1话题: maintain话题: pointers话题: median
进入JobHunting版参与讨论
1 (共1页)
j********2
发帖数: 82
1
Maintain a BBST with parent pointers. We insert into the tree upon each new
number, and we also maintain two pointers of consecutive nodes from which we
can calculate the median.
1. If size of the tree is even, return (node1+node2)/2.
2. O/w, return node1 or node2, depending on the relationship of newly
inserted element and node1/node2.
1 (共1页)
进入JobHunting版参与讨论
相关主题
MS onsite面经问一个题目
问一道题(1)A onsite被拒,面经,求分析失败原因
help: leetcode "Recover Binary Search Tree" -- 附代码150上这个是不是不对? (转载)
Google onsite前有两轮电面?面试的时候 binary tree的delete也要15分钟之内写完么?
How can one determine whether a singly linked list has a cycle?问个二叉树删除结点的问题
c/c++ double pointer研究CCI 4.2 答案是不是错了,不是一次bfs 而是要 2次 dfs的
问最小窗口覆盖的面试题报Google Offer并请教面试题
Least Common Ancester算法最优解一道题:2个BST,按大小顺序打印两棵树的所有节点
相关话题的讨论汇总
话题: node2话题: node1话题: maintain话题: pointers话题: median