机器学习之路漫漫
MLEW(Maching Learning & Endless Way)

导航

< 2025年1月 >
29 30 31 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 29 30 31 1
2 3 4 5 6 7 8
统计
 

思路:遍历数组,count保存下一个元素的位置,如果不与该元素相同,那么将该数保存在count位置,并且count++,否则,继续遍历。

复制代码
 1 public int removeElement(int[] nums, int val) {
 2        int count=0;
 3        for(int i=0;i<nums.length;i++){
 4            if(nums[i]!=val){
 5                nums[count]=nums[i];
 6                count++;
 7            }
 8        }
 9        return count;
10 }
复制代码

 

posted on   suchang  阅读(189)  评论(0编辑  收藏  举报
 
点击右上角即可分享
微信分享提示