LeetCode 给定一个整数数组和一个目标值,在该数组中找出和为目标值的两个数

问题描述

给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的 两个 整数。
你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。

示例

给定 nums = [2, 7, 11, 15], target = 9

因为 nums[0] + nums[1] = 2 + 7 = 9
所以返回 [0, 1]

代码(C++)

方法一:暴力法

class Solution   
{  
public:  
    vector twoSum(vector& nums, int target)   
    {  
        vector result(2,-1);  
        for (int i = 0; i < nums.size(); i++)  
        {  
            for (int j = i+1; j < nums.size(); j++)  
            {  
                if (nums[i] + nums[j] == target)  
                {  
                    result[0] = i;  
                    result[1] = j;  
                    return result;  
                }  
            }  
        }  
          
    }  
}; 

运行结果:

LeetCode 给定一个整数数组和一个目标值,在该数组中找出和为目标值的两个数_第1张图片
复杂度:
时间复杂度: 对于每个元素,我们试图通过遍历数组的其余部分来寻找它所对应的目标元素,这将耗费 O(n) 的时间。因此时间复杂度为O(n^2)。

你可能感兴趣的:(LeetCode)