LC.162. Find Peak Element

https://leetcode.com/problems/find-peak-element/description/
A peak element is an element that is greater than its neighbors.

Given an input array where num[i] ≠ num[i+1], find a peak element and return its index.

The array may contain multiple peaks, in that case return the index to any one of the peaks is fine.

You may imagine that num[-1] = num[n] = -∞.

For example, in array [1, 2, 3, 1], 3 is a peak element and your function should return the index number 2.


 1 public int findPeakElement(int[] nums) {
 2         if (nums == null || nums.length == 0){
 3             return -1 ;
 4         }
 5         int left = 0, right = nums.length - 1;
 6         while (left + 1 < right) {
 7             int mid = left + (right - left) / 2;
 8             if ((mid + 1) <= right && nums[mid] < nums[mid + 1]) {
 9                 left = mid ;
10             } else {
11                 right = mid ;
12             }
13         }
14         //post processing: return the index
15         if (nums[left] < nums[right]){
16             return right ;
17         } else{
18             return left ;
19         }
20     }
原文地址:https://www.cnblogs.com/davidnyc/p/8606159.html