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

leetcode-16

时间:2019-12-24 13:23:57      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:时间   如何   没有   math   目标   著作权   tar   大数据   来源   

给定一个包括 n 个整数的数组 nums 和 一个目标值 target。找出 nums 中的三个整数,使得它们的和与 target 最接近。返回这三个数的和。假定每组输入只存在唯一答案。

例如,给定数组 nums = [-1,2,1,-4], 和 target = 1.

与 target 最接近的三个数的和为 2. (-1 + 2 + 1 = 2).

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/3sum-closest
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

 

这道题没有难度,问题是如何优化,因为如果数据重复度很高,对性能浪费也很大。

class Solution {
    public int threeSumClosest(int[] nums, int target) {    
        Arrays.sort(nums);
        int ans = nums[0] + nums[1] + nums[2];
        for (int i = 0; i < nums.length; i++) {
            int start = i + 1;
            int end = nums.length - 1;
            while (start < end) {
                int sum = nums[i] + nums[start] + nums[end];
                if (Math.abs(target - sum) < Math.abs(target - ans)) {
                    ans = sum;
                }
                if (sum > target) {
                    end--;
                } else if (sum < target) {
                    start++;
                } else {
                    return ans;
                }
            }
        }
        return ans;
    }
}

这个时间复杂度有O(n2)了,有时间再写个别的版本。

 

对这道题有必要优化吗?似乎没有必要,因为testcase没有多少。如果过度优化,再面对巨大数据量的时候,甚至有可能性能更垮,所以要根据实际情况绝对。

leetcode-16

标签:时间   如何   没有   math   目标   著作权   tar   大数据   来源   

原文地址:https://www.cnblogs.com/CherryTab/p/12090786.html

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