zoukankan      html  css  js  c++  java
  • LeetCode 852. Peak Index in a Mountain Array(C++)

    Let's call an array A a mountain if the following properties hold:

    • A.length >= 3
    • There exists some 0 < i < A.length - 1 such that A[0] < A[1] < ... A[i-1] < A[i] > A[i+1] > ... > A[A.length - 1]

    Given an array that is definitely a mountain, return any i such that A[0] < A[1] < ... A[i-1] < A[i] > A[i+1] > ... > A[A.length - 1].

    Example 1:

    Input: [0,1,0]
    Output: 1

    Example 2:

    Input: [0,2,1,0]
    Output: 1

    Note:

    1. 3 <= A.length <= 10000
    2. 0 <= A[i] <= 10^6
    3. A is a mountain, as defined above.

    二分法:

    class Solution{ 
    public:
            int peakIndexInMountainArray(vector<int>& a){ 
                int beg = 1,end = a.size();
                int mid = (beg + end) / 2;
    
                while(beg <= end){ 
                    if(a[mid] < a[mid - 1]){ 
                        end = mid - 1;
                    }
                    else if(a[mid] < a[mid + 1]){ 
                        beg = mid + 1;
                    }
                    else{ 
                        break;
                    }
                    mid = (beg + end) / 2;
                }
                return mid;
            }
    };

    最大值法

    class Solution{ 
    public:
            int peakIndexInMountainArray(vector<int>& a){ 
                int max_elem = *max_element(a.begin(), a.end());
                int pos;
                for(pos = 0; pos < a.size(); ++pos){
                    if(a[pos] == max_elem)
                        break;
                }
                
                return pos;
            }
    };
  • 相关阅读:
    手打AC的第2道数位DP:BZOJ1799: [Ahoi2009]self 同类分布
    Oracle PL/SQL编程基础
    Oracle高级查询,事物,过程及函数
    缓存技术
    图形化报表
    网站配置与部署
    Oracle 空间管理
    Oracle 10g体系结构及安全管理
    ORACLE 数据库概述
    jQuery中的Ajax应用
  • 原文地址:https://www.cnblogs.com/Mayfly-nymph/p/11273740.html
Copyright © 2011-2022 走看看