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

LeetCode 27 Remove Element

时间:2015-11-25 16:44:33      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

LeetCode 27 Remove Element

C语言实现:

相当于新设置了一个指针n,仍用原有的存储空间,存放值不等于val的element

int removeElement(int* nums, int numsSize, int val) {
    int n=0;
    for(int i=0;i<numsSize;i++)
    {
        if(nums[i]!=val)
        {
            nums[n]=nums[i];
            n++;
        }
    }
    return n;
}

 

LeetCode 27 Remove Element

标签:

原文地址:http://www.cnblogs.com/walker-lee/p/4994950.html

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