• 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     }
  • 相关阅读:
    NOIP提高组2004 合并果子题解
    RMQ问题之ST算法
    7.18考试
    7.18
    7.17
    7.16
    7.15
    7.14
    7.13考试
    7.13
  • 原文地址:https://www.cnblogs.com/davidnyc/p/8606159.html
Copyright © 2020-2023  润新知