-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwo_sum.cpp
46 lines (45 loc) · 1.07 KB
/
two_sum.cpp
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
class Solution {
public:
vector<int> twoSum(vector<int>& nums, int target) {
vector<int> temp = nums;
sort(temp.begin(), temp.end());
int val1, val2;
int a = 0;
int b = temp.size() - 1;
while (a < b)
{
int sum = temp[a] + temp[b];
if ( sum > target)
--b;
else if ( sum < target )
++a;
else
{
val1 = temp[a];
val2 = temp[b];
break;
}
}
bool find_first = false;
for(int i = 0; i < nums.size(); ++i)
{
if (nums[i] == val1 || nums[i] == val2)
{
if (!find_first)
{
a = i;
find_first = true;
}
else
{
b = i;
break;
}
}
}
temp.clear();
temp.push_back(a + 1);
temp.push_back(b + 1);
return temp;
}
};