-
Notifications
You must be signed in to change notification settings - Fork 0
/
easy_array.cpp
53 lines (53 loc) · 2 KB
/
easy_array.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
47
48
49
50
51
52
53
class Sums {
public:
//*********************************solution 1****************************//
//暴力解法:遍历数组,求出数组中和为固定值的两数的索引id; //
//时间复杂度:O(n2),双层遍历数组 //
//空间复杂度:O(1),未开辟新的内存 //
//***********************************************************************//
vector<int> twoSum_1(vector<int>& nums, int target)
{
std::vector<int> solution(2,0);
for(int i=0; i< nums.size(); ++i)
{
for(int j=i+1; j<nums.size(); ++j)
{
if(target == (nums[i] + nums[j]))
{
solution[0] = i;
solution[1] = j;
return solution;
}
}
}
}
//*********************************solution 2***************************//
//哈希表解法:遍历数组,求出数组中和为固定值的两数的索引id; //
//时间复杂度:O(n),只需遍历一次数组 //
//空间复杂度:O(n),开辟新的map内存 //
//**********************************************************************//
vector<int> twoSum_2(vector<int>& nums, int target)
{
std::vector<int> solution(2,0);
std::unordered_map<int, int> hash;
for(int i=0; i< nums.size(); ++i)
{
int component = target - nums[i];
if(hash.find(component)==hash.end())
{
hash[nums[i]]=i;
}
else
{
if(hash[component]==i)
continue;
else
{
solution[0]=i;
solution[1]=hash[component];
return solution;
}
}
}
}
};