java 给定一个整数数组,返回两个数字的索引,使它们相加到特定目标。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 给定一个整数数组,返回两个数字的索引,使它们相加到特定目标。相关的知识,希望对你有一定的参考价值。

class Solution(object):
    def twoSum(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: List[int]
        """
        
        
        buffer_dict = {}; #Use a dictionary to store the valur target - nums[i],the time complexity is O(n)
        
        for i in range(len(nums)):
            if nums[i] in buffer_dict:
                return [buffer_dict[nums[i]], i];
            else:
                buffer_dict[target - nums[i]] = i;
                
                
                
                
                
                
                
public class Solution {
    public int[] twoSum(int[] nums, int target) {
        
        HashMap<Integer,Integer> bufferMap = new HashMap<Integer,Integer>();
        int[] res = new int[2];
        
        for(int i = 0; i< nums.length; i++){
            if(bufferMap.containsKey(nums[i])){
                res[0] = bufferMap.get(nums[i]);
                res[1] = i;
                return res;
            }
            
            bufferMap.put(target - nums[i],i);
            
        }
        return res;
    }
}

以上是关于java 给定一个整数数组,返回两个数字的索引,使它们相加到特定目标。的主要内容,如果未能解决你的问题,请参考以下文章

java 给定一个整数数组,返回两个数字的索引,使它们相加到特定目标。

java 给定一个整数数组,返回两个数字的索引,使它们相加到特定目标。

java 给定一个整数数组,返回两个数字的索引,使它们相加到特定目标。

java 给定一个整数数组,返回两个数字的索引,使它们相加到特定目标。

javascript 给定一个整数数组,返回两个数字的索引,使它们相加到特定目标。你可以假设每个输入wo

来自 LeetCode 给定一个整数数组,返回两个数字的索引,使得它们相加到一个特定的目标