首页 > 代码库 > LeetCode:Remove Element

LeetCode:Remove Element

题目描述:

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.


代码:

if(n == 0)
        return 0;
    int head = 0;
    int rear = n-1;
    while(head != rear)
    {
        if(A[head] == elem)
        {
            A[head] = A[rear];
            rear--;
            head++;
        }
        else
            head++;
    }
    if(A[rear] == elem)
        rear--;
    return rear+1;


LeetCode:Remove Element