由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 问一道算法题
相关主题
这么多G的面经,我也想想 ~~rocket fuel 面试题
fibonacci 复杂度这么简单推一下对不对?问道G的onsite题
Google的一道面试题Java parking lot 编程题
请教一道题请教一个问题的答案,好像以前有人讨论过
请教一个常见的面试题的答案Amazon offer 选择 附面经
Another amazon interview questionsG家店面design题目
Google的电面请教一道面试题
leetcode: largest rectangle in histogram求帮助果家OA, 关于数组中S[K]的最大长度,要求O(N)时间与空间
相关话题的讨论汇总
话题: array话题: index话题: visited话题: indexes话题: given
进入JobHunting版参与讨论
1 (共1页)
h***t
发帖数: 2540
1
A zero-indexed array A consisting of N integers is given. We visit the
indexes of the array in the following way. In the first step we visit the
index 0; in every subsequent step we move from the visited index K to the
index:
M=K+A[K]
provided M is within the array bounds. Otherwise, K is the last index
visited.
Write a function: given an array A, returns the number of indexes that
cannot be visited by the described procedure.
需要时间和空间复杂度都是N logN
a********m
发帖数: 15480
2
不能直接弄个标志数组然后扫瞄一遍么?而且还能防止循环。
h***t
发帖数: 2540
3
你写个code看看?

【在 a********m 的大作中提到】
: 不能直接弄个标志数组然后扫瞄一遍么?而且还能防止循环。
1 (共1页)
进入JobHunting版参与讨论
相关主题
果家OA, 关于数组中S[K]的最大长度,要求O(N)时间与空间请教一个常见的面试题的答案
问个近期亚麻高频题目Another amazon interview questions
你如何给一个百万页的书建立index?Google的电面
谁给解释解释这题?leetcode: largest rectangle in histogram求帮助
这么多G的面经,我也想想 ~~rocket fuel 面试题
fibonacci 复杂度这么简单推一下对不对?问道G的onsite题
Google的一道面试题Java parking lot 编程题
请教一道题请教一个问题的答案,好像以前有人讨论过
相关话题的讨论汇总
话题: array话题: index话题: visited话题: indexes话题: given