Click here to Skip to main content
15,890,670 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements
.
Example:
Input: [0,1,0,3,12]
Output: [1,3,12,0,0]


What I have tried:

class Solution {
public:
    void moveZeroes(vector<int>& nums) {
        int count=0;
        for(int i=0;i<nums.size();i++)
        {
            if(nums[i]==0)
            {
                nums.erase(nums.begin()+i);
                ++count; //This is to count number of zeroes.
            }
        }
       for(int i=0;i<count;i++)
       
           nums.push_back(0);  //To input zero at the end of the vector count times.
       
}
};



This code shows the correct output for the input :
[0,1,0,3,12]

but wrong output for input:
[0,0,1]
.
For input,
[0,0,1]
it shows
[0,1,0]
. It should be
[1,0,0]
Posted
Updated 5-Jul-18 8:13am
v3

1 solution

Your problem is that this
C++
nums.erase(nums.begin()+i);

moves remaining values in vector.
try this to see what is going on
C++
for(int i=0;i<nums.size();i++)
{
    if(nums[i]==0)
    {
        nums.erase(nums.begin()+i);
        ++count; //This is to count number of zeroes.
    }
    else
    {
        // add 100 to each nont zero tested
        nums[i]+=100
    }
}

-----
Your code do not behave the way you expect, and you don't understand why !

There is an almost universal solution: Run your code on debugger step by step, inspect variables.
The debugger is here to show you what your code is doing and your task is to compare with what it should do.
There is no magic in the debugger, it don't know what your is supposed to do, it don't find bugs, it just help you to by showing you what is going on. When the code don't do what is expected, you are close to a bug.
To see what your code is doing: Just set a breakpoint and see your code performing, the debugger allow you to execute lines 1 by 1 and to inspect variables as it execute.
Debugger - Wikipedia, the free encyclopedia[^]
1.11 — Debugging your program (stepping and breakpoints) | Learn C++[^]
The debugger is here to only show you what your code is doing and your task is to compare with what it should do.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900