首页 > 其他 > 详细

1-两数之和

时间:2020-07-01 23:51:01      阅读:70      评论:0      收藏:0      [点我收藏+]
import java.util.HashMap;
import java.util.Map;

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(nums[i])){
                return new int[]{map.get(nums[i]), i};
            }
            map.put(target - nums[i], i);
        }
        return null;
    }
}

使用map可将时间复杂度降为O(n)

1-两数之和

原文:https://www.cnblogs.com/realzhaijiayu/p/13222167.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!