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

[LeetCode] Remove Element

时间:2015-04-24 14:22:19      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:leetcode   c++   

Remove Element

 

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.

解题思路:

题意中说可以更改数组顺序,只需要目标元素移到数组后面即可。需要注意的就是若从后面掉过来的元素仍等于elem,前面的指针无需递增。

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


[LeetCode] Remove Element

标签:leetcode   c++   

原文地址:http://blog.csdn.net/kangrydotnet/article/details/45245239

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