美文网首页
027,Remove Element

027,Remove Element

作者: 丹之 | 来源:发表于2018-10-08 08:36 被阅读0次

    http://blog.csdn.net/lnho2015/article/details/50802024

    题目:

    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.

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

    相关文章

      网友评论

          本文标题:027,Remove Element

          本文链接:https://www.haomeiwen.com/subject/uqldaftx.html