【leetcode】27. Remove Element

来源:互联网 发布:qq视频录像软件免费版 编辑:程序博客网 时间:2024/06/11 09:50

题目

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.

代码

#include <algorithm>#include <iostream>#include <vector>using namespace std;int main(int argc, char *argv[]) {  int A[]={4,5};  int n=2;  int elem=4;  int count=0;  for(int i=0;i<n;++i) {    if(A[i]!=elem) {      A[count++]=A[i];                cout<<A[i]<<",";    }  }  return count;}
0 0