首页 > 其他 > 详细

Leetcode: Remove Element

时间:2015-03-18 23:25:31      阅读:456      评论:0      收藏:0      [点我收藏+]

题目:
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.

这道题比较简单直接看代码,这里多写几个版本的作参考!
C++版本

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

C#版本:

public class Solution
{
    public int RemoveElement(int[] A, int elem)
    {
        int pt = 0;
        for (int i = 0; i < A.Length; i++)
        {
            if (A[i] != elem) A[pt++] = A[i];
        }
        return pt;
    }
}

Python版本:

class Solution:
    # @param    A       a list of integers
    # @param    elem    an integer, value need to be removed
    # @return an integer
    def removeElement(self, A, elem):
        pt = 0
        for i in range(len(A)):
            if A[i] != elem:
              A[pt] = A[i]
              pt += 1
        return pt

Java版本:

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

Leetcode: Remove Element

原文:http://blog.csdn.net/theonegis/article/details/44424527

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!