1 class Solution 2 { 3 public: 4 int peakIndexInMountainArray(vector<int>& A) 5 { 6 return max_element(A.begin(),A.end())-A.begin(); 7 } 8 };
这题很简单,问题不大。
原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/9193637.html
时间: 2024-10-10 02:04:46
1 class Solution 2 { 3 public: 4 int peakIndexInMountainArray(vector<int>& A) 5 { 6 return max_element(A.begin(),A.end())-A.begin(); 7 } 8 };
这题很简单,问题不大。
原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/9193637.html