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

LeetCode Remove Element

时间:2015-03-13 22:26:07      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

1.题目

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.


2.解决方案


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

思路:题目的意思比较简单就是数组中删除一些元素,跟输入的值一样,然后返回数组长度。一般情况下数组中删除一个元素,后面的全部元素都要往前面移,很慢的。但题目中说,数组内的内容可以随意更改。所以可以用一种比较快的方式删除,就是不删除,直接与最后一个元素交换,然后缩小数组长度。

http://www.waitingfy.com/archives/1632

LeetCode Remove Element

标签:

原文地址:http://blog.csdn.net/fox64194167/article/details/44246035

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