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

LintCode- 删除排序数组中的重复数字

时间:2016-04-07 18:26:15      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:

题目描述:

  给定一个排序数组,在原数组中删除重复出现的数字,使得每个元素只出现一次,并且返回新的数组的长度。

  不要使用额外的数组空间,必须在原地没有额外空间的条件下完成。

样例

  给出数组A =[1,1,2],你的函数应该返回长度2,此时A=[1,2]

 

 1 public class Solution {
 2     /**
 3      * @param A: a array of integers
 4      * @return : return an integer
 5      */
 6     public int removeDuplicates(int[] nums) {
 7         // write your code here
 8         int length = nums.length;
 9         if(length==0){
10             return 0;
11         }
12         for(int i=0;i<length-1;i++){
13             if(nums[i+1]==nums[i]){
14                 
15                 for(int j=i;j<length-1;j++){
16                     nums[j] = nums[j+1];
17                 }
18                 length--;
19                 i--;
20             }
21         }
22         
23         return length;
24     }
25 }

 

LintCode- 删除排序数组中的重复数字

标签:

原文地址:http://www.cnblogs.com/xiaocainiao2hao/p/5364641.html

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