码迷,mamicode.com
首页 > 编程语言 > 详细

27 Remove Element 数组版

时间:2015-06-01 11:09:34      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

用vector投机取巧了。

看网上大神的数组代码。

双指针的应用。

 

class Solution {
public:
    int removeElement(int A[], int n, int elem) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        int start = 0;
        for(int i = 0; i < n; i++)
            if (elem != A[i])
            {
                A[start++] = A[i];
            }
            
        return start;
    }
};

 

27 Remove Element 数组版

标签:

原文地址:http://www.cnblogs.com/footy/p/4543267.html

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