Leetcode 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 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].
題解:
1.可以用暴力的方法來解決,程式碼如下:
class Solution {
public int[] twoSum(int[] nums, int target) {
int len = nums.length;
int[] a = new int[2];
for(int i = 0 ; i < len; i++){
for(int j = i + 1; j < len ; j++){
if(nums[i] + nums[j] == target){
a[0] = i;
a[1] = j;
break;
}
}
}
return a;
}
}
時間複雜度:O(n2)
空間複雜度:O(1)
2.使用HashMap來做
class Solution {
public int[] twoSum(int[] nums, int target) {
int len = nums.length;
Map<Integer,Integer> map = new HashMap<Integer,Integer>();
for(int j = 0 ; j < len;j++){
int complement = target - nums[j];
if(map.containsKey(complement) && map.get(complement) < len){
return new int[]{map.get(complement),j};
}
map.put(nums[j],j);
}
throw new IllegalArgumentException("No two sum solution");
}
}
時間複雜度:O(n)
空間複雜度:O(n)
相關文章
- LeetCode | 1 Two SumLeetCode
- LeetCode-1 Two SumLeetCode
- [LeetCode]1.Two SumLeetCode
- python: leetcode - 1 Two SumPythonLeetCode
- LeetCode #1:Two Sum(簡單題)LeetCode
- LeetCode: Two sum(兩數之和)LeetCode
- leetcode 371. Sum of Two IntegersLeetCode
- LeetCode Two Sum(001)解法總結LeetCode
- python leetcode 之兩數之和(two sum)PythonLeetCode
- 【Leetcode】167. Two Sum II - Input array is sortedLeetCode
- 1.兩數之和 Two Sum
- LeetCode 之 JavaScript 解答第一題 —— 兩數之和(Two Sum)LeetCodeJavaScript
- 力扣.1 兩數之和 N 種解法 two-sum力扣
- 653-Two Sum IV - Input is a BST
- leetcode Sum系列LeetCode
- Leetcode Path SumLeetCode
- 001-ksum 求符合條件的 k 個數 1. Two Sum/15. 3Sum/18. 4Sum/
- 001,Two Sum(求兩數的和)
- Leetcode 231 Power of TwoLeetCode
- Leetcode 39 Combination SumLeetCode
- abc098D Xor Sum 2(two point)
- Leetcode 29 Divide Two IntegersLeetCodeIDE
- LeetCode 2 Add Two NumbersLeetCode
- LeetCode | 349 Intersection Of Two ArraysLeetCode
- Leetcode 231. Power of TwoLeetCode
- leetcode-39-Combination SumLeetCode
- Leetcode 40 Combination Sum IILeetCode
- Leetcode 15 3SumLeetCode
- Leetcode 18 4SumLeetCode
- LeetCode 112. Path SumLeetCode
- leetcode-29. Divide Two IntegersLeetCodeIDE
- LeetCode-2 Add Two NumbersLeetCode
- Leetcode 21 Merge Two Sorted ListsLeetCode
- [LeetCode] 29. Divide Two IntegersLeetCodeIDE
- Leetcode 4 Median of Two Sorted ArraysLeetCode
- LeetCode 2. Add Two NumbersLeetCode
- 【Leetcode】1029. Two City SchedulingLeetCode
- [LeetCode] 523. Continuous Subarray SumLeetCode