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]
Explanation: 
- index 0 --> the greatest element to the right of index 0 is index 1 (18).
- index 1 --> the greatest element to the right of index 1 is index 4 (6).
- index 2 --> the greatest element to the right of index 2 is index 4 (6).
- index 3 --> the greatest element to the right of index 3 is index 4 (6).
- index 4 --> the greatest element to the right of index 4 is index 5 (1).
- index 5 --> there are no elements to the right of index 5, so we put -1.
Example 2:

Input: arr = [400]
Output: [-1]
Explanation: There are no elements to the right of index 0.
 

Constraints:

1 <= arr.length <= 104
1 <= arr[i] <= 105

这题就按题意来解就行了。

class ReplaceElementsWithGreatestElementOnRightSide : public Solution {
public:
    void Exec() {

    }
    vector<int> replaceElements(vector<int>& arr) {
        int *max_num = nullptr;
        vector<int> nums = arr;

        for (int i = 0; i < arr.size(); i++) {
            if (nullptr == max_num || arr[i] == *max_num) {
                max_num = nullptr;
                for (int j = i + 1; j < arr.size(); j++) {
                    if (nullptr == max_num || arr[j] > *max_num) {
                        max_num = &arr[j];
                    }
                }
                if (nullptr == max_num) {
                    nums[i] = -1;
                } else {
                    nums[i] = *max_num;
                }
            } else {
                nums[i] = *max_num;
            }
        }
        return nums;
    }
};
共 0 条回复
暂时没有人回复哦,赶紧抢沙发
发表新回复

作者

sryan
today is a good day