国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

LeetCode 81. Search in Rotated Sorted Array II

2019-11-14 12:04:15
字體:
來源:轉載
供稿:網友

描述

Follow up for "Search in Rotated Sorted Array":What if duplicates are allowed?Would this affect the run-time complexity? How and why?

Suppose an array sorted in ascending order 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).

Write a function to determine if a given target is in the array.

The array may contain duplicates.

分析 允許重復元素,則上一題中如果 A[m]>=A[l], 那么 [l,m] 為遞增序列的假設就不能成立了,比 如 [1,3,1,1,1]。 如果 A[m]>=A[l] 不能確定遞增,那就把它拆分成兩個條件: ? 若 A[m]>A[l],則區間 [l,m] 一定遞增 ? 若 A[m]==A[l] 確定不了,那就 l++,往下看一步即可。

代碼

class Solution {public: bool search(vector<int>& nums, int target) { int first = 0; int last = nums.size(); while (first != last) { int mid = (first + last) / 2; if (nums[mid] == target) return true; if (nums[first] < nums[mid]) { if (nums[first] <= target && target < nums[mid]) last = mid; else first = mid + 1; } else if (nums[first] > nums[mid]) { if (nums[mid] < target && target <= nums[last - 1]) first = mid + 1; else last = mid; } else ++first; // skip duplicate one } return false; }};
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 公主岭市| 都昌县| 扶余县| 大厂| 大关县| 连南| 恩平市| 肥东县| 江达县| 论坛| 葫芦岛市| 新竹市| 天峻县| 信宜市| 枞阳县| 礼泉县| 富锦市| 黔西| 建宁县| 汉川市| 页游| 宝清县| 玉林市| 特克斯县| 嵊州市| 宜良县| 城固县| 上虞市| 龙井市| 延边| 门源| 丰台区| 新野县| 缙云县| 息烽县| 监利县| 茂名市| 朔州市| 五大连池市| 罗江县| 江西省|