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 sorted, Two Sum III - Data structure design, Two Sum IV - Input is a BST, 3Sum, 3Sum Closest, 4Sum.
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· ShadowSql之.net sql拼写神器
· 感觉程序员要被 AI 淘汰了?学什么才有机会?
· MQTT协议发布和订阅的实现,一步步带你实现发布订阅服务。
· Dify开发必备:分享8个官方文档不曾解释的关键技巧