LeetCode 1. Two Sum

原题链接在这里:https://leetcode.com/problems/two-sum/

题目:

Given an array of integers, return indices of the two numbers such that they add up to a specific target.

You may assume that each input would have exactly one solution.

Example:

Given nums = [2, 7, 11, 15], target = 9,

Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, 1].

题解:

采用HashMap记录之前出现的num 和 其对应的 index.

Time Complexity: O(n). Space: O(n).

AC Java:

复制代码
 1 public class Solution {
 2     public int[] twoSum(int[] nums, int target) {
 3         if(nums == null || nums.length < 2){
 4             throw new IllegalArgumentException("Invalid input.");
 5         }
 6         
 7         int [] res = {-1, -1};
 8         HashMap<Integer, Integer> hm = new HashMap<Integer, Integer>();
 9         for(int i = 0; i<nums.length; i++){
10             if(!hm.containsKey(target - nums[i])){
11                 hm.put(nums[i], i);
12             }else{
13                 res[0] = hm.get(target-nums[i]);
14                 res[1] = i;
15                 break;
16             }
17         }
18         
19         return res;
20     }
21 }
复制代码

AC C++:

复制代码
 1 class Solution {
 2 public:
 3     vector<int> twoSum(vector<int>& nums, int target) {
 4         unordered_map<int, int> map;
 5         for(int i = 0; i < nums.size(); i++){
 6             if(map.find(target - nums[i]) != map.end()){
 7                 return {map[target - nums[i]], i};
 8             }else{
 9                 map[nums[i]] = i;
10             }
11         }
12 
13         return {-1, -1};
14     }
15 };
复制代码

跟上Two Sum II - Input array is sortedTwo Sum III - Data structure designTwo Sum IV - Input is a BST3Sum3Sum Closest4Sum.

posted @   Dylan_Java_NYC  阅读(356)  评论(0编辑  收藏  举报
编辑推荐:
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
阅读排行:
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· ShadowSql之.net sql拼写神器
· 感觉程序员要被 AI 淘汰了?学什么才有机会?
· MQTT协议发布和订阅的实现,一步步带你实现发布订阅服务。
· Dify开发必备:分享8个官方文档不曾解释的关键技巧
点击右上角即可分享
微信分享提示