力扣-283. 移动零

文章目录

力扣题目

给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。

请注意 ,必须在不复制数组的情况下原地对数组进行操作。

示例 1:

输入: nums = [0,1,0,3,12]

输出: [1,3,12,0,0]

示例 2:

输入: nums = [0]

输出: [0]

代码

第一种做法

思路:将数组中不为0的数记下来,后边补0

c 复制代码
void moveZeroes(int* nums, int numsSize)
{
    int i = 0, index = 0;
    for(i = 0; i < numsSize; i++)
    {
        if(0 != nums[i])
        {
            nums[index] = nums[i];
            index++;
        }
    }

    while(index < numsSize)
    {
        nums[index] = 0;
        index++;
    }
}

第二种做法

利用双指针的思想,把不为0的数字挪到前边

c 复制代码
void Swap(int *num1, int *num2)
{
    int temp = *num1;
    *num1 = *num2;
    *num2 = temp;
}

void moveZeroes(int* nums, int numsSize) 
{
    int first = 0;
    int last = 1;
    if(1 == numsSize)
    {
        return;
    }   
    while(last < numsSize)
    {
        if(nums[first] == 0 && nums[last] != 0)
        {
            Swap(&nums[first], &nums[last]);
            first++;
            last++;
        }
        else if(nums[first] == 0 && nums[last] == 0)
        {
            last++;
        }
        else
        {
            first++;
            last++;
        }
    }
}
相关推荐
DogDaoDao3 小时前
leetcode 面试经典 150 题:有效的括号
c++·算法·leetcode·面试··stack·有效的括号
银河梦想家7 小时前
【Day23 LeetCode】贪心算法题
leetcode·贪心算法
sz66cm7 小时前
LeetCode刷题 -- 45.跳跃游戏 II
算法·leetcode
Bran_Liu8 小时前
【LeetCode 刷题】字符串-字符串匹配(KMP)
python·算法·leetcode
00Allen0010 小时前
Java复习第四天
算法·leetcode·职场和发展
SsummerC13 小时前
【leetcode100】二叉搜索树中第k小的元素
数据结构·python·算法·leetcode
<但凡.14 小时前
题海拾贝:力扣 138.随机链表的复制
数据结构·算法·leetcode
fks14315 小时前
leetcode 121. 买卖股票的最佳时机
leetcode
Bran_Liu15 小时前
【LeetCode 刷题】栈与队列-队列的应用
数据结构·python·算法·leetcode
嘻嘻哈哈樱桃17 小时前
前k个高频元素力扣--347
数据结构·算法·leetcode