Loading

LeetCode 027 Remove Element

题目要求: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.

 

代码如下:

class Solution {
public:
    int removeElement(int A[], int n, int elem) {
        
        if(n == 0) return 0;
        
        int index = 0;
        for(int i = 0; i < n; i++){
            if(A[i] != elem)
                A[index++] = A[i];
        }
        
        return index;
    }
};

 Java:

    public int removeElement(int[] nums, int val) {

        int i = 0;
        int j = 0;

        for (; i < nums.length; i++) {
            if (nums[i] != val) {
                nums[j] = nums[i];
                j++;
            }
        }

        return j;
    }

 

posted @ 2015-02-07 16:32  Yano_nankai  阅读(106)  评论(0编辑  收藏  举报