Last active
December 18, 2015 14:29
-
-
Save luoxiaoxun/5797643 to your computer and use it in GitHub Desktop.
Follow up for "Remove Duplicates":
What if duplicates are allowed at most twice? For example,
Given sorted array A = [1,1,1,2,2,3], Your function should return length = 5, and A is now [1,1,2,2,3].
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| C++: | |
| class Solution { | |
| public: | |
| bool search(int A[], int n, int target) { | |
| // Start typing your C/C++ solution below | |
| // DO NOT write int main() function | |
| int low=0; | |
| int high=n-1; | |
| int mid; | |
| while(low<=high){ | |
| mid=low+(high-low)/2; | |
| if(A[mid]==target) return true; | |
| else if(A[mid]<target){ | |
| if(A[mid]>A[low]) low=mid+1; | |
| else if(A[mid]<A[low]){ | |
| if(A[high]>target) low=mid+1; | |
| else if(A[high]<target) high=mid-1; | |
| else return true; | |
| } | |
| else low++; | |
| }else{ | |
| if(A[mid]<A[high]) high=mid-1; | |
| else if(A[mid]>A[high]){ | |
| if(A[low]>target) low=mid+1; | |
| else if(A[low]<target) high=mid-1; | |
| else return true; | |
| } | |
| else high--; | |
| } | |
| } | |
| return false; | |
| } | |
| }; | |
| Java: | |
| public class Solution { | |
| public boolean search(int[] A, int target) { | |
| // Start typing your Java solution below | |
| // DO NOT write main() function | |
| int low=0; | |
| int high=A.length-1; | |
| int mid; | |
| while(low<=high){ | |
| mid=low+(high-low)/2; | |
| if(A[mid]==target) return true; | |
| else if(A[mid]<target){ | |
| if(A[mid]>A[low]) low=mid+1; | |
| else if(A[mid]<A[low]){ | |
| if(A[high]>target) low=mid+1; | |
| else if(A[high]<target) high=mid-1; | |
| else return true; | |
| } | |
| else low++; | |
| }else{ | |
| if(A[mid]<A[high]) high=mid-1; | |
| else if(A[mid]>A[high]){ | |
| if(A[low]>target) low=mid+1; | |
| else if(A[low]<target) high=mid-1; | |
| else return true; | |
| } | |
| else high--; | |
| } | |
| } | |
| return false; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment