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

LeetCode:Remove Element

时间:2014-06-17 23:45:10      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   http   tar   com   

题目链接

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.


题目的意思是把数组中和给定的目标数字不同的元素,全部放到数组的前部

遍历数组,如果在当前位置 i 碰到元素等于给定的目标数字,从数组尾部找一个不等于目标的数字,放到 i 位置

class Solution {
public:
    int removeElement(int A[], int n, int elem) {
        int k = n-1;
        for(int i = 0; i <= k; i++)
            if(A[i] == elem)
            {
                while(k > i && A[k] == elem)k--;//从后面找到第一个不是elem的元素
                if(k == i)return i;
                else A[i] = A[k--];//k位置非elem的元素放到i位置
            }
        return k+1;
    }
};

 

其实遍历找到等于目标数字的元素后,只需要把数组尾部元素放到当前位置,不管尾部元素是否为目标数字            本文地址

class Solution {
public:
    int removeElement(int A[], int n, int elem) {
        int k = n-1;
        for(int i = 0; i <= k;)
            if(A[i] == elem)
                A[i] = A[k--];//尾部元素放在当前位置
            else i++;
        return k+1;
    }
};

 

还有一种思路是把不等于目标数字的元素依次放到首部,如果不等于目标数字的元素较少,这种方法效率更高

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

 

【版权声明】张转载请注明出处:http://www.cnblogs.com/TenosDoIt/p/3793601.html

LeetCode:Remove Element,布布扣,bubuko.com

LeetCode:Remove Element

标签:class   blog   code   http   tar   com   

原文地址:http://www.cnblogs.com/TenosDoIt/p/3793601.html

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