[Leetcode] Remove Duplicates from Sorted Array

Source: Internet
Author: User

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 = [, 2], Your function shocould return length = 2, and A is now [].

class Solution {  public:      int removeDuplicates(int A[], int n) {          // Start typing your C/C++ solution below          // DO NOT write int main() function          if (n<=1) return n;          int i=0;          for (int j=1;j<n;++j)          {              if(A[j]!=A[i])                  A[++i] = A[j];          }          return i+1;      }  };  

 

Follow up for "Remove Duplicates": What if duplicates are allowed at most twice? For example, Given sorted array A = [,], Your function shocould return length = 5, and A is now [, 3].
class Solution {  public:      int removeDuplicates(int A[], int n) {          // Start typing your C/C++ solution below          // DO NOT write int main() function          const int maxdups = 2;          if(n<=2) return n;          int i=0,c=1;          for(int j=1;j<n;++j)          {              if(A[j]!=A[i])              {                  A[++i] = A[j];                  c = 1;              }              else              {                  if(c<maxdups)                  {                      A[++i] = A[j];                      c++;                  }              }          }          return i+1;      }  };  

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.