标签:code target problem 数组 col pre get 函数 http
给定一个数组 nums,编写一个函数将所有 0 移动到数组的末尾,同时保持非零元素的相对顺序。
来源:力扣(LeetCode)
class Solution { public: void moveZeroes(vector<int>& nums) { int index = 0; for (int num : nums) { if (num != 0) nums[index++] = num; } while (index < nums.size()) //补零 nums[index++] = 0; } };
LeetCode 283. 移动零 Move Zeroes (Easy)
标签:code target problem 数组 col pre get 函数 http
原文地址:https://www.cnblogs.com/ZSY-blog/p/12913910.html