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

 

相关文章:

  • 2021-07-26
  • 2021-12-20
  • 2021-06-17
  • 2021-06-17
  • 2021-07-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-12-06
  • 2021-06-27
  • 2021-12-29
  • 2022-03-01
  • 2021-09-28
相关资源
相似解决方案