zoukankan      html  css  js  c++  java
  • leetcode Find Peak Element python

    Find Peak Element

     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.

    python code:

    class Solution:
    # @param nums, an integer[]
    # @return an integer
    def findPeakElement(self, nums):
      if len(nums)==1 or nums[0]>nums[1]:             #边界条件判定
         return 0
      else:
        for i in range(1,len(nums)-1):
          if nums[i]>nums[i-1] and nums[i]>nums[i+1]:   #第2个到第n-1个的判定
            return i
        else:                                                                   #for正常结束,第n个为peak number
          return len(nums)-1

  • 相关阅读:
    【UVa#10325】The Lottery
    【洛谷P1868】饥饿的奶牛
    【NOI2005】维护数列
    【NOIP2018】保卫王国
    【洛谷P4719】动态dp
    【NOI2014】魔法森林
    【洛谷P4234】最小差值生成树
    【国家集训队】Tree II
    面试1
    struts2中的方法的调用
  • 原文地址:https://www.cnblogs.com/bthl/p/4574516.html
Copyright © 2011-2022 走看看