g0201_0300.s0283_move_zeroes.Solution.cpp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-all Show documentation
Show all versions of leetcode-in-all Show documentation
104 LeetCode algorithm problem solutions
The newest version!
// #Easy #Top_100_Liked_Questions #Array #Two_Pointers #Algorithm_I_Day_3_Two_Pointers
// #Programming_Skills_I_Day_6_Array #Udemy_Arrays #Big_O_Time_O(n)_Space_O(1)
// #2024_05_24_Time_6_ms_(98.89%)_Space_21.6_MB_(73.28%)
#include
class Solution {
public:
void moveZeroes(std::vector& nums) {
int firstZero = 0;
for (int i = 0; i < nums.size(); i++) {
if (nums[i] != 0) {
swap(firstZero, i, nums);
firstZero++;
}
}
}
private:
void swap(int index1, int index2, std::vector& numbers) {
int val2 = numbers[index2];
numbers[index2] = numbers[index1];
numbers[index1] = val2;
}
};
© 2015 - 2025 Weber Informatics LLC | Privacy Policy