【LeetCode从零单排】No26.Remove Duplicates from Sorted Array
生活随笔
收集整理的這篇文章主要介紹了
【LeetCode从零单排】No26.Remove Duplicates from Sorted Array
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目
? ? ?題目要求:去除sort int數組中的重復項。? ? ?
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].
代碼
public class Solution {public int removeDuplicates(int[] A) {if (A.length==0) return 0;int length =A.length;int[] B=new int[length];int index=0;//B指向下一個位數int temp=0;//B已經賦值的位置for(int i=0;i<length;i++){//如果第一項是零的情況{0,0,2}if(A[i]==0 && index==0){B[index]=0;index+=1;}if(A[i]!=B[temp]){B[index]=A[i];temp=index;index+=1;} }//給A賦值for(int k=0;k<index;k++){A[k]=B[k];}return index;} }代碼下載:https://github.com/jimenbian/GarvinLeetCode
/********************************
* 本文來自博客 ?“李博Garvin“
* 轉載請標明出處:http://blog.csdn.net/buptgshengod
******************************************/
總結
以上是生活随笔為你收集整理的【LeetCode从零单排】No26.Remove Duplicates from Sorted Array的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【LeetCode从零单排】No19.R
- 下一篇: 【LeetCode从零单排】No21.M