Skip to content

Latest commit

 

History

History
54 lines (33 loc) · 1.59 KB

File metadata and controls

54 lines (33 loc) · 1.59 KB

154. Find Minimum in Rotated Sorted Array II - 寻找旋转排序数组中的最小值 II

假设按照升序排序的数组在预先未知的某个点上进行了旋转。

( 例如,数组 [0,1,2,4,5,6,7] 可能变为 [4,5,6,7,0,1,2] )。

请找出其中最小的元素。

注意数组中可能存在重复的元素。

示例 1:

输入: [1,3,5]
输出: 1

示例 2:

输入: [2,2,2,0,1]
输出: 0

说明:


题目标签:Array / Binary Search

题目链接:LeetCode / LeetCode中国

题解

Language Runtime Memory
cpp 4 ms 1 MB
class Solution {
public:
    int findMin(vector<int>& nums) {
        return *min_element(nums.begin(), nums.end());
    }
};
static auto _ = [](){ ios::sync_with_stdio(false); cin.tie(nullptr); return 0; }();