每日一题 8(两数求和)

原题入口
给一个整数数组,找到两个数使得他们的和等于一个给定的数 target。

你需要实现的函数twoSum需要返回这两个数的下标, 并且第一个下标小于第二个下标。注意这里下标的范围是 0 到 n-1。

样例
样例1:
给出 numbers = [2, 7, 11, 15], target = 9, 返回 [0, 1].
样例2:
给出 numbers = [15, 2, 7, 11], target = 9, 返回 [1, 2].
挑战
给自己加点挑战

O(n)O(n) 空间复杂度,O(nlogn)O(nlogn) 时间复杂度,
O(n)O(n) 空间复杂度,O(n)O(n) 时间复杂度,
注意事项
你可以假设只有一组答案。

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
        Map map = new HashMap();
        for (int i = 0; i < numbers.length; i++) {
    
    
            if (map.containsKey(numbers[i])) {
    
    
                return new int[]{
    
    (int) map.get(numbers[i]), i};
            } else if (!map.containsKey(target - numbers[i])){
    
    
                map.put(target - numbers[i], i);
            }
        }
        return new int[]{
    
    };
    }
}

猜你喜欢

转载自blog.csdn.net/qq_40026668/article/details/114288297