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.
int removeElement(int A[], int n, int elem) {
/*int i = 0, j = n - 1;
//此方法改变了元素顺序
while (i <= j)
{
if (A[i] == elem)
{
while (j > i && A[j] == elem)
--j;
if (i == j)
break;
else
{
A[i] = A[j];
--j;
}
}
++i;
}*/
//不该变元素顺序
int index = 0;
for (int i = 0; i < n; ++i)
if (A[i] != elem)
A[index++] = A[i];
return index;
}