Remove Duplicates from Sorted Array [LeetCode]

Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.

Do not allocate extra space for another array, you must do this in place with constant memory.

For example,
Given input array A = [1,1,2],

Your function should return length = 2, and A is now [1,2].

 1     int removeDuplicates(int A[], int n) {
 2         if(n == 0)
 3             return 0;
 4         if(n == 1)
 5             return 1;
 6         int end = 0;
 7         for(int i = 1; i < n; i ++) {
 8             if(A[i] != A[end]){
 9                 end ++;
10                 A[end] = A[i];
11             }
12         }
13         return end + 1;
14     }

 

posted @ 2013-11-05 13:27  假日笛声  阅读(118)  评论(0编辑  收藏  举报