LeetCode 至少是其他数字两倍的最大数 [简单]
在一个给定的数组nums中,总是存在一个最大元素 。
查找数组中的最大元素是否至少是数组中每个其他数字的两倍。
如果是,则返回最大元素的索引,否则返回-1。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/largest-number-at-least-twice-of-others
示例 1:
输入: nums = [3, 6, 1, 0]
输出: 1
解释: 6是最大的整数, 对于数组中的其他整数,
6大于数组中其他元素的两倍。6的索引是1, 所以我们返回1.
示例 2:
输入: nums = [1, 2, 3, 4]
输出: -1
解释: 4没有超过3的两倍大, 所以我们返回 -1.
题目分析
解法1
只要找到最大的两个数字即可
代码实现
public class TwiceTheMaximum {
public static void main(String[] args) {
int[] nums = {3, 6, 1, 0};
int[] nums2 = {1, 2, 3, 4};
int index = dominantIndex(nums);
System.out.println(index);
System.out.println(dominantIndex(nums2));
}
public static int dominantIndex(int[] nums) {
if (nums == null || nums.length == 0) {
return -1;
}
int max1 = Integer.MIN_VALUE;
int max2 = Integer.MIN_VALUE;
int tempIndex = -1;
for (int i = 0; i < nums.length; i++) {
if (nums[i] >= max1) {
max1 = nums[i];
tempIndex = i;
}
}
for (int i = 0; i < nums.length; i++) {
if (nums[i] >= max2 && nums[i] < max1) {
max2 = nums[i];
}
}
if (max1 < max2 * 2) {
return -1;
} else {
return tempIndex;
}
}
}
网友评论