博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
747. Largest Number At Least Twice of Others比所有数字都大两倍的最大数
阅读量:4991 次
发布时间:2019-06-12

本文共 1720 字,大约阅读时间需要 5 分钟。

[抄题]:

In a given integer array nums, there is always exactly one largest element.

Find whether the largest element in the array is at least twice as much as every other number in the array.

If it is, return the index of the largest element, otherwise return -1.

Example 1:

Input: nums = [3, 6, 1, 0]Output: 1Explanation: 6 is the largest integer, and for every other number in the array x,6 is more than twice as big as x.  The index of value 6 is 1, so we return 1.

 

Example 2:

Input: nums = [1, 2, 3, 4]Output: -1Explanation: 4 isn't at least as big as twice the value of 3, so we return -1.

 [暴力解法]:

时间分析:

空间分析:

 [优化后]:

时间分析:

空间分析:

[奇葩输出条件]:

[奇葩corner case]:

数组应该考虑到只有一位数的情况

[思维问题]:

[一句话思路]:

[输入量]:空: 正常情况:特大:特小:程序里处理到的特殊情况:异常情况(不合法不合理的输入):

[画图]:

[一刷]:

  1. "至少2倍"相当于>=

[二刷]:

[三刷]:

[四刷]:

[五刷]:

  [五分钟肉眼debug的结果]:

[总结]:

  1. 数组应该考虑到只有一位数的情况

[复杂度]:Time complexity: O(n) Space complexity: O(1)

[英文数据结构或算法,为什么不用别的数据结构或算法]:

[关键模板化代码]:

[其他解法]:

[Follow Up]:

[LC给出的题目变变变]:

414三位数

 [代码风格] :

class Solution {    public int dominantIndex(int[] nums) {        //cc        if (nums == null || nums.length == 0) {            return -1;        }        if (nums.length == 1) {            return 0;        }                //ini        int max2 = Integer.MIN_VALUE, max1 = Integer.MIN_VALUE + 1, index = 0;                //for loop, change max1 max2         for (int i = 0; i < nums.length; i++) {            if (nums[i] > max1) {                max2 = max1;                max1 = nums[i];                index = i;            }else if (nums[i] > max2) {                max2 = nums[i];            }        }                //return        return (max1 >= 2 * max2) ? index : -1;    }}
View Code

 

转载于:https://www.cnblogs.com/immiao0319/p/8905714.html

你可能感兴趣的文章
selenium+maven+testng+IDEA+git自动化测试环境搭建(二)
查看>>
Mini2440 UART原理及使用
查看>>
Linux学习第六篇之文件处理命令ln(链接命令)
查看>>
thinkphp5 tp5 七牛云 上传图片
查看>>
VM下Linux网卡丢失(pcnet32 device eth0 does not seem to be ...)解决方案
查看>>
第一阶段意见汇总以及改进
查看>>
再说virtual
查看>>
随笔:技术流可以这样写博客
查看>>
[优化]JavaScript 格式化带有占位符字符串
查看>>
打JAR包
查看>>
大图轮播
查看>>
UNIX环境高级编程读书笔记
查看>>
java awt 乱码问题
查看>>
矩阵中的路径
查看>>
unity回调函数范例
查看>>
linux下给php安装curl、gd(ubuntu)
查看>>
Java自带的Logger使用-代码摘要
查看>>
Java设计模式系列 — 构造器模式
查看>>
MySQL执行计划explain的key_len解析
查看>>
Windows Phone开发(9):关于页面状态 转:http://blog.csdn.net/tcjiaan/article/details/7292160...
查看>>