27. Remove Element
Posted 阿怪123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了27. Remove Element相关的知识,希望对你有一定的参考价值。
public class Solution { public int removeElement(int[] nums, int val) { int sum=0; int len=nums.length; int end=len; int i=0; while(i<end) { if(nums[i]==val) { sum++; for(int j=i+1;j<end;j++) { nums[j-1]=nums[j]; } end--; continue; } i++; } return len-sum; } }
以上是关于27. Remove Element的主要内容,如果未能解决你的问题,请参考以下文章