Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
Example:
Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1].惯性思维解法,遍历素组返回满足条件的两个序号,注意返回类型。class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { int n=nums.size(); vector<int> c; c.clear(); for(int i=0;i<n;i++){ for(int j=i+1;j<n;j++){ if(nums[j]==target-nums[i]){ c.push_back(i); c.push_back(j); return c; } else continue; } } } };
本文介绍了一个经典的算法问题——两数之和。给定一个整数数组和一个目标值,找出数组中和为目标值的两个数,并返回它们的索引。文中提供了一个C++实现的例子,通过双层循环来寻找符合条件的两个数。
688

被折叠的 条评论
为什么被折叠?



