algorithm-base/animation-simulation/数组篇/leetcode1两数之和.md

205 lines
5.9 KiB
Java
Raw Normal View History

2021-07-23 15:44:19 +00:00
> **[tan45du_one](https://raw.githubusercontent.com/tan45du/tan45du.github.io/master/个人微信.15egrcgqd94w.jpg)** ,备注 github + 题目 + 问题 向我反馈
2021-03-20 08:30:29 +00:00
>
>
>
2021-07-23 15:44:19 +00:00
> <u>[****](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u> 两个平台同步,想要和题友一起刷题,互相监督的同学,可以在我的小屋点击<u>[**刷题小队**](https://raw.githubusercontent.com/tan45du/test/master/微信图片_20210320152235.2pthdebvh1c0.png)</u>进入。
2021-03-20 08:30:29 +00:00
2021-03-20 07:48:03 +00:00
#### [1. ](https://leetcode-cn.com/problems/two-sum/)
2021-03-17 11:42:49 +00:00
****
> nums target
>
> 使
**:**
> nums = [2, 7, 11, 15], target = 9
>
> nums[0] + nums[1] = 2 + 7 = 9
> [0, 1]
****
****
2021-07-23 15:44:19 +00:00
L,RL R L L
2021-03-17 11:42:49 +00:00
![](https://cdn.jsdelivr.net/gh/tan45du/github.io.phonto2@master/myphoto/微信图片_20210104150003.3unncifeoe80.jpg)
2021-07-23 15:44:19 +00:00
绿 3绿 target - 3 = 2
2021-03-17 11:42:49 +00:00
****
Java Code:
2021-03-17 11:42:49 +00:00
```java
class Solution {
public int[] twoSum(int[] nums, int target) {
if(nums.length < 2){
return new int[0];
}
int[] rearr = 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){
rearr[0] = i;
rearr[1] = j;
}
}
}
return rearr;
}
}
```
Python3 Code:
```python
from typing import List
class Solution:
def twoSum(nums: List[int], target: int)->List[int]:
if len(nums) < 2:
return [0]
rearr = [0] * 2
#
for i in range(0, len(nums)):
for j in range(i + 1, len(nums)):
#
if nums[i] + nums[j] == target:
rearr[0] = i
rearr[1] = j
return rearr
```
2021-07-17 04:13:15 +00:00
Swift Code:
```swift
class Solution {
func twoSum(_ nums: [Int], _ target: Int) -> [Int] {
let count = nums.count
if count < 2 {
return [0]
}
2021-07-23 15:44:19 +00:00
2021-07-17 04:13:15 +00:00
var rearr: [Int] = []
// 查询元素
for i in 0..<count {
for j in i+1..<count {
// 发现符合条件情况
if nums[i] + nums[j] == target {
rearr.append(i)
rearr.append(j)
}
}
}
return rearr
}
}
```
2021-03-17 11:42:49 +00:00
****
****
2021-07-23 15:44:19 +00:00
target 9 2 7 9 - 2 =7 7 2 key value
2021-03-17 11:42:49 +00:00
****
![](https://cdn.jsdelivr.net/gh/tan45du/tan45du.github.io.photo@master/photo/两数之和.7228lcxkqpw0.gif)
****
2021-04-26 06:44:47 +00:00
Java Code:
2021-03-17 11:42:49 +00:00
```java
class Solution {
public int[] twoSum(int[] nums, int target) {
HashMap<Integer,Integer> map = new HashMap<Integer,Integer>();
for(int i = 0; i < nums.length; i++){
//如果存在则返回
if(map.containsKey(target-nums[i])){
return new int[]{map.get(target-nums[i]),i};
}
//不存在则存入
map.put(nums[i],i);
}
return new int[0];
}
}
```
2021-07-23 15:44:19 +00:00
C++ Code:
2021-04-26 06:44:47 +00:00
```cpp
class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
unordered_map<int, int> m;
for (int i = 0; i < nums.size(); ++i) {
int t = target - nums[i];
if (m.count(t)) return { m[t], i };
2021-04-26 06:55:44 +00:00
m[nums[i]] = i;
2021-04-26 06:44:47 +00:00
}
return {};
}
};
```
JS Code:
```js
const twoSum = function (nums, target) {
const map = new Map();
for (let i = 0; i < nums.length; i++) {
const diff = target - nums[i];
if (map.has(diff)) {
return [map.get(diff), i];
}
map.set(nums[i], i);
}
};
```
Python3 Code:
2021-07-23 15:44:19 +00:00
```python
from typing import List
class Solution:
def twoSum(self, nums: List[int], target: int)->List[int]:
m = {}
for i in range(0, len(nums)):
#
if (target - nums[i]) in m.keys():
return [m[target - nums[i]], i]
#
m[nums[i]] = i
return [0]
```
2021-03-20 07:48:03 +00:00
2021-07-17 04:13:15 +00:00
Swift Code:
```swift
class Solution {
func twoSum(_ nums: [Int], _ target: Int) -> [Int] {
var m:[Int:Int] = [:]
for i in 0..<nums.count {
let n = nums[i]
if let k = m[target - n] { // 如果存在则返回
return [k, i]
}
m[n] = i // 不存在则存入
}
return [0]
}
}
2021-07-23 15:44:19 +00:00
```