首页 > 其他 > 详细

1299. Replace Elements with Greatest Element on Right Side

时间:2020-02-22 15:03:03      阅读:57      评论:0      收藏:0      [点我收藏+]

Given an array arr, replace every element in that array with the greatest element among the elements to its right, and replace the last element with -1.

After doing so, return the array.

 

Example 1:

Input: arr = [17,18,5,4,6,1]
Output: [18,6,6,6,1,-1]

 

Constraints:

  • 1 <= arr.length <= 10^4
  • 1 <= arr[i] <= 10^5
class Solution {
    public int[] replaceElements(int[] arr) {
        int n = arr.length;
        int m = arr[n - 1];
        int[] res = new int[n];
        
        for(int i = n - 1; i >= 1; i--){
            m = Math.max(arr[i], m);
            res[i - 1] = m;
        }
        res[n - 1] = -1;
        return res;
    }
}

从右到左记录每一个max

1299. Replace Elements with Greatest Element on Right Side

原文:https://www.cnblogs.com/wentiliangkaihua/p/12345157.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!