Leetcode刷题100天—5881. 增量元素之间的最大差值(数组)—day49

Posted 神的孩子都在歌唱

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode刷题100天—5881. 增量元素之间的最大差值(数组)—day49相关的知识,希望对你有一定的参考价值。

前言:

作者:神的孩子在歌唱

大家好,我叫运智

5881. 增量元素之间的最大差值

难度简单0收藏分享切换为英文接收动态反馈

给你一个下标从 0 开始的整数数组 nums ,该数组的大小为 n ,请你计算 nums[j] - nums[i] 能求得的 最大差值 ,其中 0 <= i < j < nnums[i] < nums[j]

返回 最大差值 。如果不存在满足要求的 ij ,返回 -1

示例 1:

输入:nums = [7,1,5,4]
输出:4
解释:
最大差值出现在 i = 1 且 j = 2 时,nums[j] - nums[i] = 5 - 1 = 4 。
注意,尽管 i = 1 且 j = 0 时 ,nums[j] - nums[i] = 7 - 1 = 6 > 4 ,但 i > j 不满足题面要求,所以 6 不是有效的答案。

示例 2:

输入:nums = [9,4,3,2]
输出:-1
解释:
不存在同时满足 i < j 和 nums[i] < nums[j] 这两个条件的 i, j 组合。

示例 3:

输入:nums = [1,5,2,10]
输出:9
解释:
最大差值出现在 i = 0 且 j = 3 时,nums[j] - nums[i] = 10 - 1 = 9 。

提示:

  • n == nums.length
  • 2 <= n <= 1000
  • 1 <= nums[i] <= 109
package 数组;

public class _5881_增量元素之间的最大差值 {
    public int maximumDifference(int[] nums) {
    	int left=0,right=1;
    	int max=-1;
    	while(left<right) {
    		right=left+1;
    		while(right<nums.length) {
    			if (nums[left]<nums[right]) {
    				int n=nums[right]-nums[left];
        			if (n>max) {
    					max=n;
    				}
				}
    			right++;
    		}
    		left++;
    	}
    	return max;
    }
}

本人csdn博客:https://blog.csdn.net/weixin_46654114

转载说明:跟我说明,务必注明来源,附带本人博客连接。

以上是关于Leetcode刷题100天—5881. 增量元素之间的最大差值(数组)—day49的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode刷题100天—203. 移除链表元素(链表)—day02

Leetcode刷题100天—203. 移除链表元素(链表)—day02

Leetcode刷题100天—169. 多数元素(数组)—day73

Leetcode刷题100天—169. 多数元素(数组)—day73

Leetcode刷题100天—169. 多数元素(数组)—day73

Leetcode刷题100天—169. 多数元素(哈希表)—day10