**题目:**给定一个整数数组 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]
第一次在上面刷题,有些是参考的其他人的答案,请各位大佬多多指教