亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

C++實現LeetCode之求最大間距的示例分析

發布時間:2021-08-02 09:31:15 來源:億速云 閱讀:127 作者:小新 欄目:開發技術

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

[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.

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

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++實現LeetCode之求最大間距的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

保康县| 宿州市| 永福县| 石门县| 游戏| 酒泉市| 岳池县| 许昌市| 铁岭县| 秦皇岛市| 始兴县| 新河县| 离岛区| 同江市| 广昌县| 石阡县| 罗平县| 台东市| 葵青区| 双鸭山市| 吴川市| 阳春市| 麻江县| 平乐县| 竹溪县| 盱眙县| 辽宁省| 聂荣县| 雷波县| 百色市| 怀仁县| 九寨沟县| 石渠县| 闵行区| 永胜县| 鱼台县| 弥渡县| 临猗县| 汶川县| 上虞市| 崇仁县|