"""給定乙個包含 n 個整數的陣列 nums,判斷 nums 中是否存在三個元素 a,b,c ,使得 a + b + c = 0 ?找出所有滿足條件且不重複的三元組。
注意:答案中不可以包含重複的三元組。
例如, 給定陣列 nums = [-1, 0, 1, 2, -1, -4],
滿足要求的三元組集合為:
[ [-1, 0, 1],
[-1, -1, 2]
]"""
"""思路:
先固定乙個數,再用雙指標左右,向中間聚,依次掃瞄
"""
class solution:
def threesum(self, nums) :
l = len(nums)
nums.sort() # 從小 --> 大
res=
for i in range(0,l-1):
if nums[i] > 0: break
# 保證同乙個數隻固定一次,既相同數的最後一次出現
if i > 0 and nums[i] == nums[i - 1]: continue
left,right = i+1,l-1 # 定義左右指標
while left < right:
s = nums[i]+nums[left]+nums[right]
if s==0:
# 保證左右指標掃瞄時,相同數隻選一次
while leftwhile left# 要好好理解,此時的left,right已經用過了,上面只是移動用過的left,right,在此基礎上再+-
left+=1
right-=1
elif s<0 :
while leftleft += 1
else :
while leftright-=1
return res
if __name__ == "__main__":
s = solution()
# 測試資料
nums = [ -4, -1, -1, 0, 1, 2]
nums = [-1,0,0,1]
nums = [0,0,0,0]
r = s.threesum(nums)
print(r)
三數之和(雙指標)
給定乙個包含 n 個整數的陣列 nums,判斷 nums 中是否存在三個元素 a,b,c 使得 a b c 0 找出所有滿足條件且不重複的三元組。注意 答案中不可以包含重複的三元組。例如,給定陣列 nums 1,0,1,2,1,4 滿足要求的三元組集合為 1,0,1 1,1,2 分析 題目要求 a ...
leetcode三數之和 雙指標
題目描述 給你乙個包含 n 個整數的陣列 nums,判斷 nums 中是否存在三個元素 a,b,c 使得 a b c 0 請你找出所有滿足條件且不重複的三元組。注意 答案中不可以包含重複的三元組。示例 給定陣列 nums 1,0,1,2,1,4 滿足要求的三元組集合為 1,0,1 1,1,2 題目分...
15 三數之和(陣列 排序 雙指標)
我的方案 class solution for int i 1 i nums.size i else nums.at j value for int i 0 i nums.size i if i 0 nums i nums i 1 int left i 1 int right nums.size 1...