PHP 计算至少是其他数字两倍的最大数的实现代码
计算至少是其他数字两倍的最大数
在一个给定的数组nums
中,总是存在一个最大元素 。
查找数组中的最大元素是否至少是数组中每个其他数字的两倍。
如果是,则返回最大元素的索引,否则返回-1。
示例 1:
输入: nums = [3, 6, 1, 0]
输出: 1
解释: 6是最大的整数, 对于数组中的其他整数,
6大于数组中其他元素的两倍。6的索引是1, 所以我们返回1.
示例 2:
输入: nums = [1, 2, 3, 4]
输出: -1
解释: 4没有超过3的两倍大, 所以我们返回 -1.
提示:
nums
的长度范围在[1, 50]
.- 每个
nums[i]
的整数范围在[0, 100]
.
来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/largest-number-at-least-twice-of-others
解题思路
循环一遍,记录最大值,次大值,最后判断如果最大值大于次大值 * 2,则返回最大值的 index,否则返回 -1
PHP 实现
class Solution { /** * @param Integer $num * @return Boolean */ function dominantIndex($nums) { $count = count($nums); if ($count === 1) return 0; $max = 0; $subMax = 0; $index = 0; for($i = 0; $i < $count; $i++) { if($nums[$i] >= $max){ $subMax = $max; $max = $nums[$i]; $index = $i; } else if ($nums[$i] > $subMax) { $subMax = $nums[$i]; } } return ($max >= $subMax * 2) ? $index : -1; } }
总结
相关推荐
diyanpython 2020-11-12
huavhuahua 2020-11-05
Tristahong 2020-10-14
zhaochen00 2020-10-13
LauraRan 2020-09-28
songshijiazuaa 2020-09-01
VitaLemon 2020-09-04
CodeAsWind 2020-08-17
limuxia 2020-08-17
BearRui的AK 2020-08-16
缘起宇轩阁 2020-08-15
范范 2020-07-30
Zaratustra 2020-07-29
归去来兮 2020-07-28
mingyunxiaohai 2020-07-28
willowwgx 2020-07-27
spinachcqb 2020-07-27
mingyunxiaohai 2020-07-19