由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Leetcode上面的"Search in rotated sorted array II"
相关主题
我写的quick sort如何 randomize 一个sorted的文件 ?
Is it safe to use unique_ptr with STL container?如何sort and merge n 个sorted linked list
两行quicksort,不难些吧嵌入式系统用什么sorting算法比较好?
问一个leetcode的排序问题如何让python dictionary sorting 的速度变得很快?
关于在rotated sorted array中查找的问题大牛们说话看,哪种计算机编程语言最接近自然语言呢
underlying sort algorithm for SET in STL?做项目时候 需求不明确和原始数据有问题该怎么在早期解决?
A STL sorting algorithm problema MatLab question
问一个基本问题软软open source .net, 在 linux/mac 上跑
相关话题的讨论汇总
话题: rotated话题: sorted话题: ii话题: search话题: leetcode
进入Programming版参与讨论
1 (共1页)
u***l
发帖数: 51
1
【 以下文字转载自 JobHunting 讨论区 】
发信人: until (there there), 信区: JobHunting
标 题: Leetcode上面的"Search in rotated sorted array II"
发信站: BBS 未名空间站 (Tue Nov 11 18:08:22 2014, 美东)
最优解时间复杂度是 O(n) 吗?
Suppose a sorted array is rotated at some pivot unknown to you beforehand.
(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).
可能有重复值
w***g
发帖数: 5958
2
先花log(n)找pivot,然后就是log(n)了。

【在 u***l 的大作中提到】
: 【 以下文字转载自 JobHunting 讨论区 】
: 发信人: until (there there), 信区: JobHunting
: 标 题: Leetcode上面的"Search in rotated sorted array II"
: 发信站: BBS 未名空间站 (Tue Nov 11 18:08:22 2014, 美东)
: 最优解时间复杂度是 O(n) 吗?
: Suppose a sorted array is rotated at some pivot unknown to you beforehand.
: (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2).
: 可能有重复值

z*******r
发帖数: 12
3
同意楼上!
1 (共1页)
进入Programming版参与讨论
相关主题
软软open source .net, 在 linux/mac 上跑关于在rotated sorted array中查找的问题
Pivotal Drops Groovy and Grailsunderlying sort algorithm for SET in STL?
请教pivotal Cloud Foundary的用户A STL sorting algorithm problem
技术揭秘12306改造:尖峰日PV值297亿下可每秒出票1032张问一个基本问题
我写的quick sort如何 randomize 一个sorted的文件 ?
Is it safe to use unique_ptr with STL container?如何sort and merge n 个sorted linked list
两行quicksort,不难些吧嵌入式系统用什么sorting算法比较好?
问一个leetcode的排序问题如何让python dictionary sorting 的速度变得很快?
相关话题的讨论汇总
话题: rotated话题: sorted话题: ii话题: search话题: leetcode