LeetCode 27. Remove Element
Posted 月牙儿June
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 27. Remove Element相关的知识,希望对你有一定的参考价值。
分类: Array ; Two Points
问题描述:
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.
Example:
Given input array nums = [3,2,2,3]
, val = 3
Your function should return length = 2, with the first two elements of nums being 2.
Hint:
- Try two pointers.
- Did you use the property of "the order of elements can be changed"?
- What happens when the elements to remove are rare?
Java代码示例:
public class Solution
/*这种方法最后返回的数组会有多余的right之后的内容
public int removeElement(int[] nums, int val)
int left=0;
int right=nums.length-1;
while(left<nums.length-1 && right>0 && left<=right)
if(nums[left]!=val) left++;
if(nums[right]==val) right--;
nums[left]=nums[right];
return left+1;
*/
public int removeElement(int[] A, int elem)
int len = A.length;
for (int i = 0 ; i< len; ++i)
while (A[i]==elem && i< len)
A[i]=A[--len];
return len;
以上是关于LeetCode 27. Remove Element的主要内容,如果未能解决你的问题,请参考以下文章