-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArray747.java
More file actions
56 lines (55 loc) · 1.49 KB
/
Array747.java
File metadata and controls
56 lines (55 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package array;
/**
* @ProjectName: leetcode
* @Package: array
* @ClassName: Array747
* @Author: markey
* @Description:747. 至少是其他数字两倍的最大数
* 在一个给定的数组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
* 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
* @Date: 2020/4/1 22:17
* @Version: 1.0
*/
public class Array747 {
public int dominantIndex(int[] nums) {
int max = 0;
for (int i = 0; i < nums.length; i++) {
if (nums[i] > nums[max]) {
max = i;
}
}
for (int i = 0; i < nums.length; i++) {
if (i != max && nums[max] < nums[i] * 2) {
return -1;
}
}
return max;
}
}