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

[LeetCode] Remove Element [20]

时间:2014-06-08 04:05:50      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:面试   leetcode   algorithm   数组   

题目

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.

原题链接(点我)

解题思路

给一个数组和一个数字,移除该数字在数组中所有出现的地方。
这是一个非常简单的题目,应该不用多说,读懂题目,一次AC。

代码实现

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

如果你觉得本篇对你有收获,请帮顶。

另外,我开通了微信公众号--分享技术之美,我会不定期的分享一些我学习的东西.
你可以搜索公众号:swalge 或者扫描下方二维码关注我
bubuko.com,布布扣
(转载文章请注明出处: http://blog.csdn.net/swagle/article/details/29214323 )

[LeetCode] Remove Element [20],布布扣,bubuko.com

[LeetCode] Remove Element [20]

标签:面试   leetcode   algorithm   数组   

原文地址:http://blog.csdn.net/swagle/article/details/29214323

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