标签:style class blog code color for
Given an array and a value, remove all instances of that value in place and return the new length.
The order of elements can be changed. It doesn‘t matter what you leave beyond the new length.
class Solution { public: int removeElement(int A[], int n, int elem) { int len = n; for(int i = n-1; i>=0;i--){ if(A[i] == elem){ if(i!=len-1) A[i] = A[len-1]; len--; }//end if }//end for return len; } };
[LeetCode] Remove Element,布布扣,bubuko.com
标签:style class blog code color for
原文地址:http://www.cnblogs.com/Xylophone/p/3795406.html