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不一样了!
时间: 2024-11-06 07:39:38