溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C++實現(xiàn)LeetCode之求最大間距的示例分析

發(fā)布時間:2021-08-02 09:31:15 來源:億速云 閱讀:126 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹C++實現(xiàn)LeetCode之求最大間距的示例分析,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

[LeetCode] 164. Maximum Gap 求最大間距

Given an unsorted array, find the maximum difference between the successive elements in its sorted form.

Return 0 if the array contains less than 2 elements.

Example 1:

Input: [3,6,9,1]
Output: 3
Explanation: The sorted form of the array is [1,3,6,9], either
(3,6) or (6,9) has the maximum difference 3.

Example 2:

Input: [10]
Output: 0
Explanation: The array contains less than 2 elements, therefore return 0.

Note:

  • You may assume all elements in the array are non-negative integers and fit in the 32-bit signed integer range.

  • Try to solve it in linear time/space.

遇到這類問題肯定先想到的是要給數(shù)組排序,但是題目要求是要線性的時間和空間,那么只能用桶排序或者基排序。這里用桶排序 Bucket Sort 來做,首先找出數(shù)組的最大值和最小值,然后要確定每個桶的容量,即為 (最大值 - 最小值) / 個數(shù) + 1,在確定桶的個數(shù),即為 (最大值 - 最小值) / 桶的容量 + 1,然后需要在每個桶中找出局部最大值和最小值,而最大間距的兩個數(shù)不會在同一個桶中,而是一個桶的最小值和另一個桶的最大值之間的間距,這是因為所有的數(shù)字要盡量平均分配到每個桶中,而不是都擁擠在一個桶中,這樣保證了最大值和最小值一定不會在同一個桶中,具體的證明博主也不會,只是覺得這樣想挺有道理的,各位看官大神們?nèi)糁廊绾巫C明請務(wù)必留言告訴博主啊,參見代碼如下:

class Solution {
public:
    int maximumGap(vector<int>& nums) {
        if (nums.size() <= 1) return 0;
        int mx = INT_MIN, mn = INT_MAX, n = nums.size(), pre = 0, res = 0;
        for (int num : nums) {
            mx = max(mx, num);
            mn = min(mn, num);
        }
        int size = (mx - mn) / n + 1, cnt = (mx - mn) / size + 1;
        vector<int> bucket_min(cnt, INT_MAX), bucket_max(cnt, INT_MIN);
        for (int num : nums) {
            int idx = (num - mn) / size;
            bucket_min[idx] = min(bucket_min[idx], num);
            bucket_max[idx] = max(bucket_max[idx], num);
        }
        for (int i = 1; i < cnt; ++i) {
            if (bucket_min[i] == INT_MAX || bucket_max[i] == INT_MIN) continue;
            res = max(res, bucket_min[i] - bucket_max[pre]);
            pre = i;
        }
        return res;
    }
};

以上是“C++實現(xiàn)LeetCode之求最大間距的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI