mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
16 lines
258 B
C
16 lines
258 B
C
void moveZeroes(int *nums, int numsSize)
|
|
{
|
|
int i = 0, start = 0;
|
|
|
|
for (i = 0; i < numsSize; i++)
|
|
{
|
|
if (nums[i])
|
|
nums[start++] = nums[i];
|
|
}
|
|
|
|
for (start; start < numsSize; start++)
|
|
{
|
|
nums[start] = 0;
|
|
}
|
|
}
|