Question 1:
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2. Please note that your returned answers (both index1 and index2) are not zero-based.
You may assume that each input would have exactly one solution.
Input: numbers={2, 7, 11, 15},
target=9
Output: index1=1, index2=2
Answer:
1.排序后,用两个指针从前后开始查。时间复杂度o(nlgn),结果是over time
快排:
public static void quickSort(int[] sum, int begin, int end) {
int left = begin;
int right = end;
int base = sum[end];
while (left < right){
while (left < right && sum[left] <= base) {
++left;
}
sum[right] = sum[left];
while (left < right && sum[right] >= base) {
--right;
}
sum[left] = sum[right];
}
sum[left] = base;
quickSort(sum, begin, left - 1);
quickSort(sum, left + 1, end);
}
2、借助于Hash表,用空间换时间。
hash可以用o(1)的复杂度判断一个元素是否在hashmap里。将数据中的数据保存在hash表中,判断target-now是否在target中出现过。
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 |
public class Solution { public
int [] twoSum( int [] numbers, int
target) { HashMap<Integer, Integer> map = new
HashMap<Integer, Integer>(); int
result[] = new
int [ 2 ]; for
( int i = 0 ; i < numbers.length; ++i) { int
now = numbers[i]; int
dis = target - now; if
(map.containsKey(dis)) { int
index = map.get(dis) + 1 ; result[ 0 ] = index; result[ 1 ] = i + 1 ; break ; } else
{ map.put(now, i); } } return
result; } } |
AC
原文:http://www.cnblogs.com/changxiaoxiao/p/3732052.html