您好,登錄后才能下訂單哦!
小編給大家分享一下怎么使用Python實現刪除排序數組中重復項,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
具體如下:
對于給定的有序數組nums,移除數組中存在的重復數字,確保每個數字只出現一次并返回新數組的長度
注意:不能為新數組申請額外的空間,只允許申請O(1)的額外空間修改輸入數組
Example 1:
Given nums = [1,1,2],
Your function should return length = 2, with the first two elements of nums being 1 and 2 respectively.
It doesn't matter what you leave beyond
Example 2:
Given nums = [0,0,1,1,1,2,2,3,3,4],Your function should return length = 5, with the first five elements of nums being modified to 0, 1, 2, 3, and 4 respectively.
It doesn't matter what values are set beyond the returned length.
說明:為什么返回列表長度而不用返回列表?因為列表傳入函數是以引用的方式傳遞的,函數中對列表進行的修改會被保留。
// nums is passed in by reference. (i.e., without making a copy) int len = removeDuplicates(nums); // any modification to nums in your function would be known by the caller. // using the length returned by your function, it prints the first len elements. for (int i = 0; i < len; i++) { print(nums[i]); }
1. 簡單判斷列表中元素是否相等,相等就刪除多余元素
def removeDuplicates(self, nums): """ :type nums: List[int] :rtype: int """ if not nums: return 0 if len(nums)==1: #單獨判斷列表長度為1的情況,因為之后的for循環從下標1開始 return 1 temp_num = nums[0] count =0 #for循環中動態刪除列表元素,列表縮短,為了防止下標溢出需要用count標記刪除元素個數 for index, num in enumerate(nums[1:]): if temp_num == num: #元素相等就刪除 del nums[index-count] count += 1 else: temp_num = num return len(nums) def removeDuplicates(self, nums): """ :type nums: List[int] :rtype: int """ forth = 0 back = 1 while back <= len(nums)-1: if nums[forth] == nums[back]: nums.pop(back) else: forth += 1 back += 1 return len(nums)
2. 修改數組,保證數組的前幾個數字互不相同,且這幾個數字的長度同返回長度相等
def removeDuplicates(self, nums): """ :type nums: List[int] :rtype: int """ if not nums: return 0 length = 0 #不存在重復數字的數組長度 for index in range(1,len(nums)): #遍歷數組 if nums[index] != nums[length]: length += 1 nums[length] = nums[index] return length+1
以上是“怎么使用Python實現刪除排序數組中重復項”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。