Array (10): 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.

Code 1:

// LeetCode, Remove Element
// ????? O(n)?????? O(1)
class Solution {
public:
int removeElement(vector<int>& nums, int target) {
    int index = 0;
    for (int i = 0; i < nums.size(); ++i) {
         if (nums[i] != target) {
              nums[index++] = nums[i];
            }
         }
         return index;
      }
};

Code 2:

// LeetCode, Remove Element
// ?? remove()?????? O(n)?????? O(1)
class Solution {
public:
int removeElement(vector<int>& nums, int target) {
        return distance(nums.begin(), remove(nums.begin(), nums.end(), target));
   }
};

remove() function parsing reference blog:

https://blog.csdn.net/chenglove1314/article/details/39137067

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326398305&siteId=291194637