码迷,mamicode.com
首页 > 其他好文 > 详细

1. 两数之和

时间:2019-03-03 20:29:02      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:color   family   font   style   for   tar   hashmap   nbsp   开始   

解题思路:

第一个方法是穷举,第二个方法是利用Map做,第二个方法一开始没想到,还是有点太年轻。

代码:

第一个代码:

class Solution {
    public int[] twoSum(int[] nums, int target) {
        int[] ans = new int[2];
        boolean flag = false;
        for(int i=0;i<nums.length;i++) {
            for(int j=0;j<nums.length;j++){
                if(i == j){
                    continue;
                }else{
                    if(nums[i] + nums[j] == target){
                        ans[0] = i;
                        ans[1] = j;
                        flag = true;
                        break;
                    }
                }
            }
            if(flag){
                break;
            }
        }
        
        
        return ans;
    }
}

第二个代码:

class Solution {
    public int[] twoSum(int[] nums, int target) {
        Map<Integer,Integer> map = new HashMap<>();
        for(int i=0;i<nums.length;i++) {
            if(map.containsKey(target - nums[i])){
                return new int[] {map.get(target - nums[i]),i};
            }
            map.put(nums[i], i);
        }
        return new int[1];
    }
}

 

1. 两数之和

标签:color   family   font   style   for   tar   hashmap   nbsp   开始   

原文地址:https://www.cnblogs.com/doubest/p/10467207.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!