zoukankan      html  css  js  c++  java
  • 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     }
  • 相关阅读:
    &&和||解析
    SQL-union union all
    sql杂记
    JAVA杂记
    sql之left join、right join、inner join的区别
    蓝鲸邮箱配置
    快速部署社区版(详解)
    蓝鲸平台安装环境准备
    蓝鲸脚本集合
    zabbix3.4 install
  • 原文地址:https://www.cnblogs.com/davidnyc/p/8606159.html
Copyright © 2011-2022 走看看