原题地址:https://leetcode.com/problems/two-sum/
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution.
Example:
Given nums = [2, 7, 11, 15], target = 9,Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].
方法一
正常两次循环,循环次数可能多,只要数组不是很大,效率还是很高的
|
|
方法二
边循环边使用对象存储
|
|
测试结果,建议使用更大的数组测试,才会看到twoSum2
方法效率高
|
|
经测试,在小数组时,twoSum方法
比twoSum2
快很多,当数组变大时,twoSum2
算法更快