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

[LeetCode]16 3Sum Closest

时间:2015-01-02 16:14:25      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:leetcode

https://oj.leetcode.com/problems/3sum-closest/

http://fisherlei.blogspot.com/2013/01/leetcode-3sum-closest-solution.html

public class Solution {
    public int threeSumClosest(int[] num, int target) {
        
        // Input validations
        // ...
        
        Arrays.sort(num);
        int len = num.length;

        int minDiff = Integer.MAX_VALUE;
        int result = 0;
        
        // Fix some int
        for (int i = 0 ; i < len ; i ++)
        {
            int m = i + 1;
            int n = len - 1;
            while (m < n)
            {
                int sum = num[i] + num[m] + num[n];
                if (sum == target)
                {
                    return sum; // A best result found.
                }
                else
                {
                    int diff = Math.abs(sum - target);
                    if (diff < minDiff)
                    {
                        minDiff = diff;
                        result = sum;
                    }    

                    if (sum > target)
                        n --;
                    else
                        m ++;
                }
            }
        }
        
        return result;
    }
}


[LeetCode]16 3Sum Closest

标签:leetcode

原文地址:http://7371901.blog.51cto.com/7361901/1598416

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