首页 > 代码库 > LeetCode Find Peak Element [TBD]
LeetCode Find Peak Element [TBD]
说要写成对数时间复杂度,算了想不出来,写个O(n)的水了
class Solution {public: int findPeakElement(const vector<int> &num) { int len = num.size(); if (len < 1) { return -1; } if (len == 1) { return 0; } bool asc = true; int idx = 0; int last = num[idx++]; while (idx < len) { int cur = num[idx]; if (asc) { if (cur < last) { return idx - 1; } } else { if (cur > last) { asc = true; } } last = cur; idx++; } if (asc) { return idx - 1; } return -1; }};
LeetCode Find Peak Element [TBD]
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。