LeetCode刷题【Array】 Find Minimum in Rotated Sorted Array

来源:互联网 发布:java求最大公约数 编辑:程序博客网 时间:2024/05/21 09:05

【题目】

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).

Find the minimum element.

You may assume no duplicate exists in the array.

方法:

public class Solution {    public int findMin(int[] nums) {        int index=0;        for(int i=0;i<nums.length-1;i++){            if(nums[i]>nums[i+1])                index=i+1;        }        return nums[index];    }}

【参考】

https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/#/description

原创粉丝点击