lintcode56 - Two Sum - easy
Posted jasminemzy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lintcode56 - Two Sum - easy相关的知识,希望对你有一定的参考价值。
import java.util.Arrays; public class Solution { /* * @param numbers: An array of Integer * @param target: target = numbers[index1] + numbers[index2] * @return: [index1 + 1, index2 + 1] (index1 < index2) */ public int[] twoSum(int[] numbers, int target) { // write your code here // mergesort- nlogn HashMap<Integer, Integer> map = new HashMap<Integer, Integer>(); // for loop with binary search -nlog for(int i = 0; i < numbers.length; i++){ if(map.get(numbers[i]) != null){ int[] twoIdx = {map.get(numbers[i]) +1 , i + 1}; return twoIdx; } map.put(target - numbers[i], i); } int [] twoIdx = {}; return twoIdx; } }
降低时间复杂度用的HashMap方法!
不能用那个binarySearch,因为这里面要你返回的是index,binarysearch使用前要求你一定要sort过,不然他那个折半最后返回的值不会对的。而如果你sort过,那你返回的找到的那个index也和原始数字里所需数字的index不一样了!
以上是关于lintcode56 - Two Sum - easy的主要内容,如果未能解决你的问题,请参考以下文章
[LintCode/LeetCode]——两数和三数和四数和
[LintCode] Two Sum - Data Structure Design
[Lintcode two-sum]两数之和(python,双指针)