lc1. 两数之和

给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。

你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/two-sum
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
    public int[] twoSum(int[] nums, int target) {
      Map<Integer, Integer> map = new HashMap<>();
      int comp;
      for(int i = 0; i < nums.length; i++){
          comp = target - nums[i];
          if(map.containsKey(comp))
                return new int[] {i, map.get(comp)};
          map.put(nums[i], i);
      }
        throw new IllegalArgumentException("No two sum solution");
    }
}

主要是哈希表的使用。通过一次遍历就可以完成任务。
注意一些:

  1. Map是接口,其实现类有HashMapHashTable前者线程不安全,后者相反。
  2. new int [] {1,2,3} 即数组的构造函数。
发布了21 篇原创文章 · 获赞 0 · 访问量 84

猜你喜欢

转载自blog.csdn.net/weixin_43963453/article/details/105390680
今日推荐