Leetcode刷题01-求两数之和

**题目:**给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那两个整数,并返回他们的数组下标。

你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。
示例:

给定 nums = [2, 7, 11, 15], target = 9

因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]

1.暴力解法
直接遍历数组进行查找

class Solution(object):
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
        for i in range(0, len(nums) - 1):
            for j in range(i+1, len(nums)):
                if nums[i] + nums[j] == target:
                    return[i,j]

测试结果:
在这里插入图片描述
2.哈希表解法
以空间换取速度的方式,将查找时间从 O(n)降低到 O(1)

class Solution(object):
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
	#新建立一个空字典用来保存数值及其在列表中对应的索引
	dict1 = {}
	#遍历一遍列表对应的时间复杂度为O(n)
        for i in range(0, len(nums)):
            #相减得到另一个数值
            num = target - nums[i]
            #如果另一个数值不在字典中,则将第一个数值及其的索引报错在字典中
            #因为在字典中查找的时间复杂度为O(1),因此总时间复杂度为O(n) 
            if num not in dict1:
                dict1[nums[i]] = i
            #如果在字典中则返回
            else:
                return [dict1[num], i]

在这里插入图片描述
3.排序解法
可以先对nums数组进行排序,然后首尾相加

class Solution(object):
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
        temp=nums
        temp=temp.sort()
        i=0
        j=len(nums)-1-i
        for i in range(0,len(nums)):
            if nums[i]+nums[j]>target:
                j=j-1
            if nums[i]+nums[j]<target:
                i=i+1
            else:
                break
        return[i,j-1]

第一次在上面刷题,有些是参考的其他人的答案,请各位大佬多多指教

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值