问题描述:一个int数组,将指定元素从数组中删除,返回处理之后的数组长度。
解决:双指针来处理。
/*
Given an array and a value, remove all instances of that value in place and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
The order of elements can be changed. It doesn't matter what you leave beyond the new length.
*/
public class RemoveElement {
public int removeElement(int[] nums, int val) {
int index = 0;
for(int i=0; i<nums.length; i++) {
if(nums[i] != val) {
nums[index++] = nums[i];
}
}
return index;
}
}