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

LeetCode Maximum Gap

时间:2015-11-05 06:30:50      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:

原题链接在这里:https://leetcode.com/problems/maximum-gap/

桶排序(bucket sort)

假设有N个元素A到B。

那么最大差值不会大于ceiling[(B - A) / (N - 1)]

令bucket(桶)的大小len = ceiling[(B - A) / (N - 1)],则最多会有(B - A) / len + 1个桶

对于数组中的任意整数K,很容易通过算式loc = (K - A) / len找出其桶的位置,然后维护每一个桶的最大值和最小值

由于同一个桶内的元素之间的差值至多为len - 1,因此最终答案不会从同一个桶中选择。

对于每一个非空的桶p,找出下一个非空的桶q,则q.min - p.max可能就是备选答案。返回所有这些可能值中的最大值。

Note: corner case [1,1,1,1]若元素都相同,range就是0,16行算bucket时需要保持bucket的长度大于等于1.否则17行就有除以0的error.

同时此情况maxGap = 0. 所以maxGap的初始化是0而不是Integer.MIN_VALUE.

Time O(n), Space O(n).

AC Java:

 1 public class Solution {
 2     public int maximumGap(int[] nums) {
 3         if(nums == null || nums.length < 2){
 4             return 0;
 5         }
 6         //Calculate the range
 7         int max = Integer.MIN_VALUE;
 8         int min = Integer.MAX_VALUE;
 9         int len = nums.length;
10         for(int i = 0; i<len; i++){
11             max = Math.max(max,nums[i]);
12             min = Math.min(min,nums[i]);
13         }
14         
15         //bucket length and number
16         int bucketLen = Math.max(1,(max-min)/(len-1)); //error
17         int buckNum = (max-min)/bucketLen + 1;
18         
19         //Maintain the maximun and minmum of each bucket
20         int [] maxArr = new int[buckNum];
21         int [] minArr = new int[buckNum];
22         Arrays.fill(maxArr, Integer.MIN_VALUE);
23         Arrays.fill(minArr, Integer.MAX_VALUE);
24         for(int i = 0; i<len; i++){
25             int loc = (nums[i]-min)/bucketLen;
26             maxArr[loc] = Math.max(maxArr[loc],nums[i]);
27             minArr[loc] = Math.min(minArr[loc],nums[i]);
28         }
29         //Calculate maximum gap
30         int maxGap = 0;
31         int preMax = maxArr[0];
32         for(int i = 1; i<buckNum; i++){
33             if(maxArr[i] == Integer.MIN_VALUE || minArr[i] == Integer.MAX_VALUE){
34                 continue;
35             }
36             maxGap = Math.max(maxGap, minArr[i]-preMax);
37             preMax = maxArr[i];
38         }
39         return maxGap;
40     }
41 }

 

LeetCode Maximum Gap

标签:

原文地址:http://www.cnblogs.com/Dylan-Java-NYC/p/4938081.html

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