由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问最小窗口覆盖的面试题
相关主题
Least Common Ancester算法最优解那个双堆求median的能不能这样做?
问一个题目报Google Offer并请教面试题
A onsite被拒,面经,求分析失败原因一道题:2个BST,按大小顺序打印两棵树的所有节点
150上这个是不是不对? (转载)LCA复杂度是多少
How can one determine whether a singly linked list has a cycle?LCA复杂度
面试的时候 binary tree的delete也要15分钟之内写完么?发现一个很恶心的基础问题
问个二叉树删除结点的问题MS onsite面经
CCI 4.2 答案是不是错了,不是一次bfs 而是要 2次 dfs的问一道题(1)
相关话题的讨论汇总
话题: words话题: mind话题: node话题: 覆盖话题: 窗口
进入JobHunting版参与讨论
1 (共1页)
b******7
发帖数: 79
1
就是一直一篇文章,球可以覆盖所有单词的最小窗口,记得bbs有几个人提过这个题,
但是没人给过解,希望牛人能够赐教!!感激!
g*******y
发帖数: 1930
2
haven't read this one before, would you mind explain the problem in a little more details?
a*****e
发帖数: 51
3
What does 'the smallest window' mean? Dose it mean that within this window, every unique words appear? If it is the case, then the following solution attacks:
Build a suffix tree for the text, each node contains a link list of
positions of the corresponding words in ascending order. So you would have something like:
Node1: 4->12->27->30->...
Node2: 14->22->37->40->...
Node3: 2->5->12->28->...
.
Node M: 12->13->27->32->... M be the #of unique words
Maintain a variable MinD for the current minimu

【在 b******7 的大作中提到】
: 就是一直一篇文章,球可以覆盖所有单词的最小窗口,记得bbs有几个人提过这个题,
: 但是没人给过解,希望牛人能够赐教!!感激!

1 (共1页)
进入JobHunting版参与讨论
相关主题
问一道题(1)How can one determine whether a singly linked list has a cycle?
help: leetcode "Recover Binary Search Tree" -- 附代码面试的时候 binary tree的delete也要15分钟之内写完么?
c/c++ double pointer研究问个二叉树删除结点的问题
Google onsite前有两轮电面?CCI 4.2 答案是不是错了,不是一次bfs 而是要 2次 dfs的
Least Common Ancester算法最优解那个双堆求median的能不能这样做?
问一个题目报Google Offer并请教面试题
A onsite被拒,面经,求分析失败原因一道题:2个BST,按大小顺序打印两棵树的所有节点
150上这个是不是不对? (转载)LCA复杂度是多少
相关话题的讨论汇总
话题: words话题: mind话题: node话题: 覆盖话题: 窗口