您好,登錄后才能下訂單哦!
這兩道題若是不使用官方題解的雙指針做法,就會(huì)涉及到淺復(fù)制,深復(fù)制的問題,可參考如下https://blog.csdn.net/qq_32907349/article/details/52190796 。其中,此題將要使用深復(fù)制,但這會(huì)違背題意中的不開辟新的內(nèi)存空間。
1.移除元素
class Solution:
def removeElement(self, nums, val):
i = 0
for j in range(0,len(nums)):
if (nums[j] != val):
nums[i] = nums[j]
i=i+1
for k in nums[0:i]:
print(k)
return i
使用了深復(fù)制:
import copy
class Solution:
def removeElement(self, nums, val):
_nums = copy.deepcopy(nums)
for num in _nums:
if num == val:
nums.remove(num)
length = len(nums)
return length,nums
2.刪除有序數(shù)組重復(fù)元素
class Solution:
def removeDuplicates(self, nums):
i=0
lenth=len(nums)
for j in range(1,lenth):
if nums[j]!=nums[i]:
i=i+1
nums[i]=nums[j]
for k in nums[0:i+1]:
print(k)
return i+1
注釋:其中將完成操作的新數(shù)組也進(jìn)行了輸出
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。