leetcode不会-two-sum-array-of-integers:给定一个整数数组,返回两个数字的索引,使它们相加为特定目标。http

时间:2024-07-19 21:10:20
【文件属性】:

文件名称:leetcode不会-two-sum-array-of-integers:给定一个整数数组,返回两个数字的索引,使它们相加为特定目标。http

文件大小:5KB

文件格式:ZIP

更新时间:2024-07-19 21:10:20

系统开源

leetcode 不会二和整数数组 给定一个整数数组,返回两个数字的索引,使它们相加为特定目标。 您可以假设每个输入都只有一个解决方案,并且您不能两次使用相同的元素。 例子: Given nums = [2, 7, 11, 15], target = 9, Because nums[0] + nums[1] = 2 + 7 = 9, return [0, 1]. 我们可以将问题描述理解为:给定数组中有 2 个整数的组合与目标相加。 我们马上找到了解决办法: public int[] solve(int[] nums, int target) { for(int i = 0; i < nums.length; i++) { for(int j = 1; j < nums.length; j++) { if (nums[i] + nums[j] == target && i!=j) { return new int[]{i,j}; } } } return new int[]{0,0}; } 该解决方案的时间复杂度为 O(n^2)。 它解决了问题,但不是很有趣。 但是,我们可以很快推断出应


【文件预览】:
two-sum-array-of-integers-master
----SolutionsRunner.java(2KB)
----bruteForceStrategy.java(407B)
----SolutionStrategy.java(78B)
----LICENSE(1KB)
----complementsGoBackStrategy.java(520B)
----.gitignore(278B)
----complementsHashMapStrategy.java(492B)
----README.md(2KB)

网友评论