由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 一道比较简单的题
相关主题
一道老题目愤怒,amazon interviewer 不知KMP 算法
Groupon 電面问问careerup书上的一道题:
还真从来没见过考KMP之类string matching算法的求教一个onsite面试题目
字串 查找的 最佳算法。关于leetcode 的strStr这题
真慫阿, Facebook 1st phone interview,没看出来KMP快呀
The time complexity on finding the kth largest element in a现场让写KMP
弯曲中型IT公司面经来统计下面试时候被问到过的牛逼算法有哪些
Wildcard String Matching和怎么提高写程序能力的总结你们面试有被问到过下列算法的么
相关话题的讨论汇总
话题: array话题: number话题: elements话题: unordered
进入JobHunting版参与讨论
1 (共1页)
p****3
发帖数: 448
1
但我还是没给出欧嗯的答案
unordered array of size N, already know more than half of the elements are
number x (duplicate). the rest of the array is unknown.
find the number x efficiently (that means O(N))
T**********r
发帖数: 52
2
boyer-moore majority vote algorithm
http://www.cs.utexas.edu/~moore/best-ideas/mjrty/index.html

【在 p****3 的大作中提到】
: 但我还是没给出欧嗯的答案
: unordered array of size N, already know more than half of the elements are
: number x (duplicate). the rest of the array is unknown.
: find the number x efficiently (that means O(N))

f*****e
发帖数: 2992
3
反证法,can't end with other elements.

【在 T**********r 的大作中提到】
: boyer-moore majority vote algorithm
: http://www.cs.utexas.edu/~moore/best-ideas/mjrty/index.html

w**z
发帖数: 8232
4
仰慕你的签名。

【在 T**********r 的大作中提到】
: boyer-moore majority vote algorithm
: http://www.cs.utexas.edu/~moore/best-ideas/mjrty/index.html

h*****n
发帖数: 188
5
search for the N/2 th smallest element in O(N)

【在 p****3 的大作中提到】
: 但我还是没给出欧嗯的答案
: unordered array of size N, already know more than half of the elements are
: number x (duplicate). the rest of the array is unknown.
: find the number x efficiently (that means O(N))

t********x
发帖数: 81
6
有个疑问
如果数组是 AAABBC,那么用这个算法,最后结果是?0
这怎么办?

【在 T**********r 的大作中提到】
: boyer-moore majority vote algorithm
: http://www.cs.utexas.edu/~moore/best-ideas/mjrty/index.html

h*****3
发帖数: 1391
7
more than half...

【在 t********x 的大作中提到】
: 有个疑问
: 如果数组是 AAABBC,那么用这个算法,最后结果是?0
: 这怎么办?

1 (共1页)
进入JobHunting版参与讨论
相关主题
你们面试有被问到过下列算法的么真慫阿, Facebook 1st phone interview,
一道面试题,高亮算法怎么实现的The time complexity on finding the kth largest element in a
为什么面试题目都答出来了还是跪了?弯曲中型IT公司面经
向各位大侠请教几道面试题的思路Wildcard String Matching和怎么提高写程序能力的总结
一道老题目愤怒,amazon interviewer 不知KMP 算法
Groupon 電面问问careerup书上的一道题:
还真从来没见过考KMP之类string matching算法的求教一个onsite面试题目
字串 查找的 最佳算法。关于leetcode 的strStr这题
相关话题的讨论汇总
话题: array话题: number话题: elements话题: unordered