【题目描述】
给你一个数组 nums
和一个值 val
,你需要 原地 移除所有数值等于 val
的元素,并返回移除后数组的新长度。
不要使用额外的数组空间,你必须仅使用 O(1)
额外空间并 原地 修改输入数组。
元素的顺序可以改变。你不需要考虑数组中超出新长度后面的元素。
https://leetcode.cn/problems/remove-element/
【示例】
【代码】admin
import java.util.*;标签:index,27,val,nums,int,LeeCode,数组,移除,new From: https://blog.51cto.com/u_13682316/6008245
// 2023-1-15
class Solution {
public int removeElement(int[] nums, int val) {
int index = 0;
for (int num: nums){
if (num != val){
nums[index] = num;
index++;
}
}
// System.out.println(Arrays.toString(nums));
return index;
}
}
public class Main {
public static void main(String[] args) {
new Solution().removeElement(new int[]{3,2,2,3}, 3); // 输出: 2, nums = [2,2]
new Solution().removeElement(new int[]{0,1,2,2,3,0,4,2}, 2); // 输出: 5, nums = [0,1,4,0,3]
}
}