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

Remove Element

时间:2015-04-16 06:42:02      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

题目链接https://leetcode.com/problems/remove-element/

 

这道题比较简单,为了维护这个leetcode系列的完整性,我依然把它加在这里,code如下

 

class Solution {
public:
    int removeElement(int A[], int n, int elem) {
        for(int i = 0; i < n; i++) {
            if(A[i] == elem) {
                A[i] = A[n - 1];
                n--;
                i--;
            }
        }
        return n;
    }
};

 

Remove Element

标签:

原文地址:http://www.cnblogs.com/walcottking/p/4430807.html

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