当前位置:   article > 正文

两数之和(Java算法每日一题)_两数之和java题解

两数之和java题解

问:给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 的那 两个 整数,并返回它们的数组下标。
原题链接:https://leetcode.cn/problems/two-sum/
答:

class Solution {
    public int[] twoSum(int[] nums, int target) {
        int i,j;
        int f = 0;
        for( i = 0;i < nums.length;i++)
        {
            for( j = i+1;j < nums.length; j++)
                if(nums[i] + nums[j] == target && i!=j)
                {
                    return new int[] {i,j};
                }
            
        }
        return null;
        
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

解析:遍历每个数组元素,查找是否有两个数之和为target,如果有,返回一个新数组。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/384951
推荐阅读
相关标签
  

闽ICP备14008679号