题解 | #三数之和#

数组中相加和为0的三元组

http://www.nowcoder.com/practice/345e2ed5f81d4017bbb8cc6055b0b711

#
# 
# @param num int整型一维数组 
# @return int整型二维数组
#
class Solution:
    def threeSum(self , num ):
        # write code here
        def twoSum(num, target, idx):
            lo, hi = idx, len(num)-1
            two_sum = []
            while lo < hi:
                if num[lo] + num[hi] == target:
                    two_sum.append([num[lo], num[hi]])
                    while lo + 1 < len(num) and num[lo] == num[lo+1]:
                        lo += 1
                    lo += 1
                    while hi - 1 >= 0  and num[hi] == num[hi-1]:
                        hi -= 1
                    hi -= 1
                elif num[lo] + num[hi] > target:
                    hi -= 1
                else:
                    lo += 1
            return two_sum
        if len(num) < 3:
            return []
        num.sort()
        res = []
        for i,n in enumerate(num):
            if n > 0:
                break
            if i-1 >= 0 and n == num[i-1]:
                continue
            temp = twoSum(num, -n, i+1)
            if temp:
                for t in temp:
                    res.append([n, t[0], t[1]])
        return res
全部评论

相关推荐

双非坐过牢:非佬,可以啊10.28笔试,11.06评估11.11,11.12两面,11.19oc➕offer
点赞 评论 收藏
分享
10-24 11:10
山西大学 Java
若梦难了:哥们,面试挂是很正常的。我大中厂终面挂,加起来快10次了,继续努力吧。
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务