概述
题目:
给定一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?找出所有满足条件且不重复的三元组。
注意:答案中不可以包含重复的三元组。
示例 1:
例如, 给定数组 nums = [-1, 0, 1, 2, -1, -4],
满足要求的三元组集合为:
[
[-1, 0, 1],
[-1, -1, 2]
]
解题思路:
一开始我尝试锁定一个元素,然后遍历剩下的链表,但是显示timeout,看来不能用O(n2)的复杂来求解,所以我的方法是一开始就做排序,并且在剩下的链表中从头尾使用双指针开始遍历。效果挺好。
代码:
class Solution:
def threeSum(self, nums):
"""
:type nums: List[int]
:rtype: List[List[int]]
"""
ans = []
nums.sort()
print(nums)
if len(nums) < 3 :
return
for i in range(len(nums) - 2) :
right = len(nums) - 1
left = i + 1
while right > left :
ite = nums[i] + nums[right] + nums[left]
if ite == 0 :
if [nums[i] , nums[left] , nums[right]] not in ans :
ans.append([nums[i] , nums[left] , nums[right]])
right = right - 1 ; left = left + 1
if right > left and nums[right] == nums[right - 1]:
right = right - 1
if right > left and nums[left] == nums[left + 1]:
left = left + 1
elif ite > 0:
right = right - 1
else:
left = left + 1
return ans
最后
以上就是超级纸鹤为你收集整理的【LeetCode python编程题练习】数组3:三数之和的全部内容,希望文章能够帮你解决【LeetCode python编程题练习】数组3:三数之和所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复