// 移动零,将零移动到末尾-双指针
// 输入: nums = [0,1,0,3,12]
// 输出: [1,3,12,0,0]
public static void moveZeroes(int[] nums){
if(nums==null)return;
int j=0;
// 两两比较
for (int i = 0; i <nums.length ; i++) {
if(nums[i]!=0){
// 不为零就交换位置
int temp=nums[i];
nums[i]=nums[j];
nums[j++]=temp;
}
}
}
移动零-双指针
最新推荐文章于 2024-10-30 16:47:45 发布
该代码展示了如何使用双指针技巧,对整数数组进行处理,将所有零元素移动到数组的末尾,同时保持非零元素的相对顺序。
摘要由CSDN通过智能技术生成