LeetCode 27: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(vector& nums, int val) {
        int length = nums.size();
        int j = 0;
        for(int i = 0; i


你可能感兴趣的:(LeetCode,LeetCode算法分析)