文件名称:leetcodepushfront-LeeCode_example:LeeCode_example
文件大小:7KB
文件格式:ZIP
更新时间:2024-07-26 18:43:47
系统开源
leetcode 推前LeeCode_example 参考 1. 二和 给定一个整数数组,返回两个数字的索引,使它们相加为特定目标。 您可以假设每个输入都只有一个解决方案,并且您不能两次使用相同的元素。 示例:给定 nums = [2, 7, 11, 15], target = 9, 因为 nums[0] + nums[1] = 2 + 7 = 9,返回 [0, 1]。 O(n^2): class Solution { public: vector< int > twoSum (vector< int >& nums, int target) { vector< int > output; for ( int i= 0 ; i<nums. size (); i++) for ( int j=i+ 1 ; j<nums. size (); j++) { if (nums[i]+nums[j]==target) { output. push_back (i); output. push_back (j); return output; } } } }; 上): class Solution
【文件预览】:
LeeCode_example-master
----README.md(22KB)