标签:end 中文 div turn class array write 并且 理解
你给出一个整数数组(size为n),其具有以下特点:
假定P是峰值的位置则满足A[P] > A[P-1]
且A[P] > A[P+1]
,返回数组中任意一个峰值的位置。
样例 1:
输入: [1, 2, 1, 3, 4, 5, 7, 6]
输出: 1 or 6
解释:
返回峰顶元素的下标
样例 2:
输入: [1,2,3,4,1]
输出: 3
Time complexity O(logN)
标签:end 中文 div turn class array write 并且 理解
原文地址:https://www.cnblogs.com/yunxintryyoubest/p/13113475.html