由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 一道老题目
相关主题
向各位大侠请教几道面试题的思路大家看一下这道google面试题
请教一道题目details 2nd smallest element in an array
liverampOA题目问一道老题
Google电话面试题目问个google面试题
来做一个暴力题Given an array of N integers from range [0, N] and one is missing. Find the missing number.
问两道微软题问题:Find the minimum number of "swaps" needed to sort an array
这些找missing number的题是不是都不能用求和做?Find the Kth smallest element in 2 sorted
amazon 电面题Google + Facebook Onsite questions
相关话题的讨论汇总
话题: window话题: smallest话题: given话题: 连续话题: contains
进入JobHunting版参与讨论
1 (共1页)
c*****y
发帖数: 90
1
Given two arrays A [1..n] and B[1..m], find the smallest window in A that
contains all elements of B. That is, find a pair such that A[l..k]
contains B[1..m]
For example, given A = 3,1,5,7,3,5,2 and B = 5,3 then the smallest window
is[3,5].Any efficient way to do that?
这个题目版上讨论过,能不能给个链接?
我是菜鸟,问些见笑的问题:
这个smallest window in A中包含的all elements of B必须是连续的吗?以上面的例
子,3,1,5是不是也是一个window,只是不是连续的也不是最小的?
我之所以问这个问题是因为对下面链接的答案有些疑惑。如果不连续的也可以的话,为
什么要找which collision was continuous?
http://www.doctorinterv
l******o
发帖数: 144
2
为什么不是A[5..6]呢? 这个不是更小? 必须保持顺序?

Given two arrays A [1..n] and B[1..m], find the smallest window in A that
contains all elements of B. That is, find a pair such that A[l..k]
contains B[1..m]
For example, given A = 3,1,5,7,3,5,2 and B = 5,3 then the smallest window
is[3,5].Any efficient way to do that?
这个题目版上讨论过,能不能给个链接?
我是菜鸟,问些见笑的问题:
这个smallest window in A中包含的all elements of B必须是连续的吗?以上面的例
子,3,1,5是不是也是一个window,只是不是连续的也不是最小的?
我之所以问这个问题是因为对下面链接的答案有些疑惑。如果不连续的也可以的话,为
什么要找which collision was con

【在 c*****y 的大作中提到】
: Given two arrays A [1..n] and B[1..m], find the smallest window in A that
: contains all elements of B. That is, find a pair such that A[l..k]
: contains B[1..m]
: For example, given A = 3,1,5,7,3,5,2 and B = 5,3 then the smallest window
: is[3,5].Any efficient way to do that?
: 这个题目版上讨论过,能不能给个链接?
: 我是菜鸟,问些见笑的问题:
: 这个smallest window in A中包含的all elements of B必须是连续的吗?以上面的例
: 子,3,1,5是不是也是一个window,只是不是连续的也不是最小的?
: 我之所以问这个问题是因为对下面链接的答案有些疑惑。如果不连续的也可以的话,为

c*****y
发帖数: 90
3
up.
r*****e
发帖数: 264
4
http://www.mitbbs.com/article_t/JobHunting/31500113.html

【在 c*****y 的大作中提到】
: Given two arrays A [1..n] and B[1..m], find the smallest window in A that
: contains all elements of B. That is, find a pair such that A[l..k]
: contains B[1..m]
: For example, given A = 3,1,5,7,3,5,2 and B = 5,3 then the smallest window
: is[3,5].Any efficient way to do that?
: 这个题目版上讨论过,能不能给个链接?
: 我是菜鸟,问些见笑的问题:
: 这个smallest window in A中包含的all elements of B必须是连续的吗?以上面的例
: 子,3,1,5是不是也是一个window,只是不是连续的也不是最小的?
: 我之所以问这个问题是因为对下面链接的答案有些疑惑。如果不连续的也可以的话,为

l******o
发帖数: 144
5
这个链接的好像是不要求windows里面元素顺序和B中的相同。如果要求相同应该怎么做
呢?O(n^2)是容易的,不知道能不能降阶。

http://www.mitbbs.com/article_t/JobHunting/31500113.html

【在 r*****e 的大作中提到】
: http://www.mitbbs.com/article_t/JobHunting/31500113.html
c*****y
发帖数: 90
6
谢谢,就是在找这个。

【在 r*****e 的大作中提到】
: http://www.mitbbs.com/article_t/JobHunting/31500113.html
1 (共1页)
进入JobHunting版参与讨论
相关主题
Google + Facebook Onsite questions来做一个暴力题
amazon question问两道微软题
问题这些找missing number的题是不是都不能用求和做?
求教一个onsite面试题目amazon 电面题
向各位大侠请教几道面试题的思路大家看一下这道google面试题
请教一道题目details 2nd smallest element in an array
liverampOA题目问一道老题
Google电话面试题目问个google面试题
相关话题的讨论汇总
话题: window话题: smallest话题: given话题: 连续话题: contains