• leecode刷题(8)-- 两数之和


    leecode刷题(8)-- 两数之和

    两数之和

    描述:

    给定一个整数数组 nums 和一个目标值 target,请你在该数组中找出和为目标值的那 两个 整数,并返回他们的数组下标。

    你可以假设每种输入只会对应一个答案。但是,你不能重复利用这个数组中同样的元素。

    示例:

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

    因为 nums[0] + nums[1] = 2 + 7 = 9

    所以返回 [0, 1]

    思路:

    这道题其实很简单,我们可以直接用暴力搜索的方法,设置双重循环,遍历每一个元素,查找两次循环中是否有两个元素的值等于 target 的,取这两个元素的下标,返回数组。

    代码如下:

    import java.util.Arrays;
    
    public class TwoSum {
    	public int[] twoSum(int[] nums, int target) {
    		if (nums == null || nums.length == 0) {
    			return new int[]{};
    		}
    		for (int i = 0 ; i < nums.length; i++) {
    			for (int j = i + 1; j < nums.length; j++) {
    				if (nums[i] + nums[j] == target) {
    					int[] result = {i, j};
    					return result;
    				}
    			}
    		}
    		throw new IllegalArgumentException("No two sum solution");
    	}
    
    	public static void main(String[] args) {
    		int[] nums = {2, 7, 11, 15};
    		TwoSum twoSum = new TwoSum();
    		int[] result = twoSum.twoSum(nums,9);
    		System.out.println(Arrays.toString(result));
    	}
    }
    
  • 相关阅读:
    Hadoop综合大作业
    hive基本操作与应用
    理解MapReduce计算构架
    熟悉HBase基本操作
    Hadoop综合大作业
    hive基本操作与应用
    理解MapReduce计算构架
    熟悉HBase基本操作
    熟悉常用的HDFS操作
    爬虫大作业
  • 原文地址:https://www.cnblogs.com/weixuqin/p/10211726.html
Copyright © 2020-2023  润新知