[1299] 将每个元素替换为右侧最大元素
- GitHub
- http://leetcode.xuezhisd.top/post/4296eb3.html
- https://leetcode.com/problems/replace-elements-with-greatest-element-on-right-side
- https://leetcode-cn.com/problems/replace-elements-with-greatest-element-on-right-side
题目描述
给你一个数组 arr
,请你将每个元素用它右边最大的元素替换,如果是最后一个元素,用 -1
替换。
完成所有替换操作后,请你返回这个数组。
示例:
输入:arr = [17,18,5,4,6,1] 输出:[18,6,6,6,1,-1]
提示:
1 <= arr.length <= 10^4
1 <= arr[i] <= 10^5
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |