2.利用hashMap的key-value特性 a.为数组建立索引b.在索引中查找有没有target-nums[i]的key,并且满足不是数的本身 3.map中找到就中止 a.先判断map中有没有这个数 b.如果有,则直接返回 ...
分类:
其他好文 时间:
2017-11-11 11:22:52
阅读次数:
170
Add to List 1. Two Sum Add to List 1. Two Sum Add to List Add to List Add to List Add to List 1. Two Sum 1. Two Sum DescriptionHintsSubmissionsDiscuss ...
分类:
其他好文 时间:
2017-11-11 00:29:12
阅读次数:
189
题目要求:给定一个整型数组,以及一个目标值,求出数组中两个元素之和为目标值的元素下标,以整型数组形式返回 ...
分类:
其他好文 时间:
2017-11-09 11:35:20
阅读次数:
105
1. 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 wo ...
分类:
其他好文 时间:
2017-11-06 21:14:38
阅读次数:
163
【Problem】 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 wou ...
分类:
其他好文 时间:
2017-10-28 13:52:28
阅读次数:
130
Given a Binary Search Tree and a target number, return true if there exist two elements in the BST such that their sum is equal to the given target. E ...
分类:
其他好文 时间:
2017-10-22 20:57:06
阅读次数:
124
1、hashmap基本操作 2、hash function,equals函数,hashCode 3、练习题 1)Two Sum Given an array of integers, return indices of the two numbers suchthat they add up to ...
分类:
其他好文 时间:
2017-10-17 23:01:19
阅读次数:
324
Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number. The function ...
分类:
其他好文 时间:
2017-10-14 21:54:45
阅读次数:
113
题目:给定一个整型数组,返回两个数的下标,满足两个数相加为一个特定整数。假定只有一个正确答案 例如: nums = [2, 7, 11, 15], target = 9,因为nums[0] + nums[1] = 2 + 7 = 9,返回[0,1] 思路:如果是只返回两个数,可以将数组排序后,从两边 ...
分类:
其他好文 时间:
2017-10-14 21:20:41
阅读次数:
196
题意:在排序的数组,找到两个元素和为target,返回其下标index1 和 index2 (1<=index1 < index2),只有一种答案,每个元素不能用两次。 分析: ...
分类:
其他好文 时间:
2017-10-13 00:35:35
阅读次数:
132