Skip to content

Latest commit

 

History

History

1089

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Given a fixed length array arr of integers, duplicate each occurrence of zero, shifting the remaining elements to the right.

Note that elements beyond the length of the original array are not written.

Do the above modifications to the input array in place, do not return anything from your function.

 

Example 1:

Input: [1,0,2,3,0,4,5,0]
Output: null
Explanation: After calling your function, the input array is modified to: [1,0,0,2,3,0,0,4]

Example 2:

Input: [1,2,3]
Output: null
Explanation: After calling your function, the input array is modified to: [1,2,3]

 

Note:

  1. 1 <= arr.length <= 10000
  2. 0 <= arr[i] <= 9

Related Topics:
Array

Solution 1.

// OJ: https://leetcode.com/problems/duplicate-zeros/
// Author: github.com/lzl124631x
// Time: O(N)
// Space: O(1)
class Solution {
public:
    void duplicateZeros(vector<int>& A) {
        int cnt = 0;
        for (int n : A) cnt += n == 0;
        if (cnt == 0) return;
        for (int i = A.size() - 1; i >= 0; --i) {
            cnt -= A[i] == 0;
            int j = i + cnt;
            if (j < A.size()) A[j] = A[i];
            if (j + 1 < A.size() && A[i] == 0) A[j + 1] = 0;
        }
    }
};