国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

leetcode1. Two Sum

2019-11-10 17:17:11
字體:
來源:轉載
供稿:網友

leetcode1. 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, and you may not use the same element twice.

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

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

解法一

兩次循環遍歷,找到相應序號

public class Solution { public int[] twoSum(int[] nums, int target) { int[] result = new int[2]; for(int i = 0; i < nums.length; i++) { for (int j = i + 1; j < nums.length; j++) { if (nums[i] + nums[j] == target) { result[0] = i; result[1] = j; return result; } } } return result; }}

Runtime: 58 ms

解法二

利用hashmap,key存放數值,value存放出現的位置。從前到后進行遍歷,將target值減去當前的值,看是否存在map中,

若存在map中則取出相應的標號,退出。

public class Solution { public int[] twoSum(int[] nums, int target) { int[] result = new int[2]; HashMap<Integer, Integer> map = new HashMap<Integer, Integer>(); for(int i = 0; i < nums.length; i++) { int num = target - nums[i]; if (map.containsKey(num)) { result[0] = map.get(num); result[1] = i; return result; } map.put(nums[i], i); } return result; }}

Runtime: 8 ms


上一篇:藍橋杯之六角填數

下一篇:商人小鑫

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 德令哈市| 万盛区| 竹北市| 瓦房店市| 渑池县| 获嘉县| 汤阴县| 双城市| 濮阳市| 界首市| 肥城市| 洞口县| 金平| 富平县| 合山市| 娄底市| 大石桥市| 西宁市| 临沂市| 汉中市| 平和县| 子洲县| 长岛县| 高雄市| 杭锦后旗| 富锦市| 扶沟县| 化州市| 天台县| 山阴县| 镶黄旗| 余江县| 桂东县| 延庆县| 汽车| 出国| 从化市| 新蔡县| 济南市| 德昌县| 嘉黎县|