当前位置:   article > 正文

leetcode 27:移除元素

leetcode 27:移除元素

https://leetcode.cn/problems/remove-element/

class Solution {
    public int removeElement(int[] nums, int val) {
        int count=0;
        int[] index=new int[100];
        for(int i=0;i<nums.length;i++){
            if(nums[i]==val){
                count++;
                index[count]=i;
            }
        }
        int count1=count;
        for(int i=nums.length-count;i<nums.length;i++){
            if(nums[i]==val){
                count1--;
            }
        }
        for(int i=nums.length-count;i<nums.length;i++){
           
            if(nums[i]!=val){
                
                nums[index[count1--]]=nums[i];
                nums[i]=val;
            
            } 
        }
        return nums.length-count;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28

等于快慢指针

class Solution {
    public int removeElement(int[] nums, int val) {
        // 快慢指针
        int slowIndex = 0;
        for (int fastIndex = 0; fastIndex < nums.length; fastIndex++) {
            if (nums[fastIndex] != val) {
                nums[slowIndex] = nums[fastIndex];
                slowIndex++;
            }
        }
        return slowIndex;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/209678?site
推荐阅读
相关标签
  

闽ICP备14008679号