-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtwo_sum.cpp
More file actions
61 lines (45 loc) · 1.39 KB
/
two_sum.cpp
File metadata and controls
61 lines (45 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
*
* leetcode题目,给定一个数组和一个整数,找出数组中的两个元素,使这两个元素之和等于给定整数
* 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
*
*/
#include <unordered_map>
#include <iostream>
#include <vector>
using namespace std;
vector<int> two_sum(vector<int> &in, int target)
{
unordered_map<int, bool> used;
vector<int> result;
for (auto i : in) {
used[i] = true;
}
for (auto i : in) {
int minus = target - i;
if (used[minus]) {
result.push_back(i);
result.push_back(minus);
return result;
}
}
result.clear();
return result;
}
int main()
{
vector<int> result;
int n[] = {2, 7, 11, 15} ;
vector<int> test(n, n + 4) ; //将数组n的前4个元素作为向量a的初值
for (auto i : test) {
cout<<i<<endl;
}
result = two_sum(test, 9);
for (auto i : result) {
cout<<i<<endl;
}
return 0;
}