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

259. 3Sum Smaller

时间:2016-06-22 12:48:24      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

    /*
     * 259. 3Sum Smaller
     * 2016-6-21 by Mingyang
     * Given an array of n integers nums and a target, 
     * find the number of index triplets i, j, k with 0 <= i < j < k < n 
     * that satisfy the condition nums[i] + nums[j] + nums[k] < target.
     * 这个题目就是翻版的3Sum,刚开始自己做逻辑有点乱
     * 如果小于target直接count += right-left;因为第二个是left的话,第三个从left+1到right都是合法的
     * 不用一个一个判断,另外,每次完了以后left++,另外若小于,自然是right--
     */
     public static int count;
     public static int threeSumSmaller(int[] nums, int target) {
            count = 0;
            Arrays.sort(nums);
            int len = nums.length;
            for(int i=0; i<len-2; i++) {
                int left = i+1, right = len-1;
                while(left < right) {
                    if(nums[i] + nums[left] + nums[right] < target) {
                        count += right-left;
                        left++;
                    } else {
                        right--;
                    }
                }
            }

            return count;
        }

 

259. 3Sum Smaller

标签:

原文地址:http://www.cnblogs.com/zmyvszk/p/5606658.html

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