码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode_remove_distance

时间:2017-05-28 23:15:38      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:color   ret   using   end   stream   std   str   system   tco   

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
    int a[5] = { 1,2,-1,3,5 };
    vector<int>num(a, a + 5);
    int tar;
    cin >> tar;
    cout << distance(num.begin(), remove(num.begin(), num.end(), tar));
    system("pause");
    return 0;
}

 

leetcode_remove_distance

标签:color   ret   using   end   stream   std   str   system   tco   

原文地址:http://www.cnblogs.com/babyking1/p/6916898.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!