国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

[LeetCode]15.3Sum

2019-11-14 10:36:00
字體:
供稿:網(wǎng)友

這道題在春節(jié)假期期間做的,實在沒有心思做,自己只會暴力算法,也就是三層嵌套循環(huán)的O(n^3)的算法。

網(wǎng)上有此類問題的統(tǒng)一算法,k sum,假期也只了解了3Sum的解法,核心思想是先排序,后使用兩個指針(其實就是左右索引)將復(fù)雜度降到了O(n^2)

算法:

排序,O(nlogn)如果是2Sum,那么只需要兩個指針(lo, hi),一個從左一個從右,向中間搜索。
while lo < hi:    if sums[lo] + sums[hi] == target:        result.append([sums[lo], sums[hi]])        lo += 1        hi -= 1        while sums[lo] == sums[lo - 1]:            lo += 1        while sums[hi] == sums[hi + 1]:            hi -= 1    elif sums[lo] + sums[hi] < target:        lo += 1    else:        hi -= 1

3Sum是在2Sum外加上了一層循環(huán)
class Solution(object):    def threeSum(self, nums):        """        :type nums: List[int]        :rtype: List[List[int]]        """        # nums = list(set(nums))        # PRint nums        length = len(nums)        result = []        if nums == None or length < 3:            return result        nums.sort()        for x in xrange(0, length - 2):            if nums[x] > 0:                break            else:                if x == 0 or nums[x] > nums[x - 1]:                    left = x + 1                    right = length - 1                    while left < right:                        if nums[x] + nums[left] + nums[right] == 0:                            if [nums[x], nums[left], nums[right]] not in result:                                result.append(                                    [nums[x], nums[left], nums[right]])                            left += 1                            right -= 1                            while left < right and nums[left] == nums[left - 1]:                                left += 1                            while left < right and nums[right] == nums[right + 1]:                                right -= 1                        elif nums[x] + nums[left] + nums[right] < 0:                            left += 1                        else:                            right -= 1        return result
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 湟源县| 旬邑县| 巴马| 商城县| 南召县| 昌图县| 塘沽区| 宜川县| 金阳县| 庄河市| 湾仔区| 青阳县| 米脂县| 同德县| 崇礼县| 怀安县| 侯马市| 山西省| 镇巴县| 泸州市| 平南县| 涪陵区| 博白县| 湄潭县| 崇州市| 衢州市| 图片| 黄平县| 工布江达县| 伊宁市| 民权县| 贞丰县| 尉犁县| 凤阳县| 平远县| 壤塘县| 太康县| 锡林郭勒盟| 潍坊市| 英吉沙县| 绵竹市|