码迷,mamicode.com
首页 > 编程语言 > 详细

删除数组重复项

时间:2019-04-20 22:55:07      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:rem   for   code   数组   --   style   cat   solution   bsp   

 1 class Solution {
 2     public int removeDuplicates(int[] nums) {
 3      int length = nums.length - 1;
 4         for (int i = 0; i <= length; i++) {
 5             for (int j = i + 1; j <= length; j++) {
 6                 if (nums[i] == nums[j]) {
 7                     for (int k = i; k <length ; k++) {
 8                         nums[k] = nums[k + 1];
 9                     }
10                     nums[length] = 0;
11                     length--;
12                     j--;
13                 }
14             }
15         }
16         length++;
17         return length;
18             
19 }
20 }

 

删除数组重复项

标签:rem   for   code   数组   --   style   cat   solution   bsp   

原文地址:https://www.cnblogs.com/Baronboy/p/10743092.html

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