solution.md 4.5 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 最大间距
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<p>给定一个无序的数组,找出数组在排序之后,相邻元素之间最大的差值。</p>

<p>如果数组元素个数小于 2,则返回 0。</p>

<p><strong>示例&nbsp;1:</strong></p>

<pre><strong>输入:</strong> [3,6,9,1]
<strong>输出:</strong> 3
<strong>解释:</strong> 排序后的数组是 [1,3,6,9]<strong><em>, </em></strong>其中相邻元素 (3,6) 和 (6,9) 之间都存在最大差值 3。</pre>

<p><strong>示例&nbsp;2:</strong></p>

<pre><strong>输入:</strong> [10]
<strong>输出:</strong> 0
<strong>解释:</strong> 数组元素个数小于 2,因此返回 0。</pre>

<p><strong>说明:</strong></p>

<ul>
	<li>你可以假设数组中所有元素都是非负整数,且数值在 32 位有符号整数范围内。</li>
	<li>请尝试在线性时间复杂度和空间复杂度的条件下解决此问题。</li>
</ul>

每日一练社区's avatar
每日一练社区 已提交
26
<p>以下<span style="color:red">错误</span>的选项是?</p>
F
fix bug  
feilong 已提交
27

每日一练社区's avatar
每日一练社区 已提交
28
## aop
F
fix bug  
feilong 已提交
29

每日一练社区's avatar
每日一练社区 已提交
30
### before
F
fix bug  
feilong 已提交
31

每日一练社区's avatar
每日一练社区 已提交
32 33 34 35 36
```cpp
#include <bits/stdc++.h>
using namespace std;
```
### after
F
fix bug  
feilong 已提交
37

每日一练社区's avatar
每日一练社区 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50
```cpp
int main()
{
    Solution sol;
    int res;
    vector<int> nums = {3, 6, 9, 1};
    res = sol.maximumGap(nums);
    cout << res;
    return 0;
}
```

## 答案
F
fix bug  
feilong 已提交
51

每日一练社区's avatar
每日一练社区 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
```cpp
class Solution
{
public:
    int maximumGap(vector<int> &nums)
    {
        int l = 0, r = nums.size() - 1;
        while (l < r)
        {
            int mid = (l + r) / 2;
            if (nums[mid] < nums[mid + 1])
                l = mid + 1;
            else
                r = mid;
        }
        return r;
    }
};
```
## 选项

F
fix bug  
feilong 已提交
73

每日一练社区's avatar
每日一练社区 已提交
74
### A
F
fix bug  
feilong 已提交
75

每日一练社区's avatar
每日一练社区 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
```cpp
class Solution
{
public:
    int maximumGap(vector<int> &nums)
    {
        if (nums.size() < 2)
            return 0;
        if (nums.size() == 2)
            return abs(nums[1] - nums[0]);
        int maxn = 0;
        int minn = INT_MAX;
        for (int i = 0; i < nums.size(); i++)
            maxn = max(maxn, nums[i]);
        for (int i = 0; i < nums.size(); i++)
            minn = min(minn, nums[i]);
        if (maxn == minn)
            return 0;
        int size = (maxn - minn) / nums.size();
        if (size < 1)
            size = 1;
        int num = (maxn - minn) / size + 1;
        vector<int> nummax(num, 0);
        vector<int> nummin(num, maxn);
        nummin[0] = minn;
        nummax[0] = minn;
        nummax[num - 1] = maxn;
        nummin[num - 1] = maxn;
        for (int i = 0; i < nums.size(); i++)
        {
            if (nums[i] == maxn || nums[i] == minn)
                continue;
            int qnum = (nums[i] - minn) / size;
            nummax[qnum] = max(nummax[qnum], nums[i]);
            nummin[qnum] = min(nummin[qnum], nums[i]);
        }
        for (int i = 0; i < nummin.size(); i++)
        {
            if (nummax[i] == 0 && nummin[i] == maxn)
            {
                nummax.erase(nummax.begin() + i);
                nummin.erase(nummin.begin() + i);
                i--;
            }
        }
        int res = 0;
        for (int i = 1; i < nummax.size(); i++)
        {
            res = max(res, nummin[i] - nummax[i - 1]);
        }
        return res;
    }
};
```

### B
F
fix bug  
feilong 已提交
132

每日一练社区's avatar
每日一练社区 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
```cpp
class Solution
{
public:
    int maximumGap(vector<int> &nums)
    {
        if (nums.empty())
            return 0;
        int mx = INT_MIN, mn = INT_MAX, n = nums.size();
        for (int a : nums)
        {
            mx = max(a, mx);
            mn = min(a, mn);
        }
        int size = (mx - mn) / n + 1;
        int bucket_nums = (mx - mn) / size + 1;
        vector<int> bucket_min(bucket_nums, INT_MAX);
        vector<int> bucket_max(bucket_nums, INT_MIN);
        set<int> s;
        for (int a : nums)
        {
            int indx = (a - mn) / size;
            bucket_max[indx] = max(bucket_max[indx], a);
            bucket_min[indx] = min(bucket_min[indx], a);
            s.insert(indx);
        }
        int pre = 0, ans = 0;
        for (int i = 1; i < bucket_nums; ++i)
        {
            if (!s.count(i))
                continue;
            int t = bucket_min[i] - bucket_max[pre];
            ans = max(ans, t);
            pre = i;
        }
        return ans;
    }
};
```

### C
F
fix bug  
feilong 已提交
174

每日一练社区's avatar
每日一练社区 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
```cpp
class Solution
{
public:
    static bool cmp(const int &a, const int &b)
    {
        return a < b;
    }
    int maximumGap(vector<int> &nums)
    {
        if (nums.size() <= 1)
            return 0;
        sort(nums.begin(), nums.end(), cmp);
        int maxgap = 0;
        for (int i = 1; i < nums.size(); i++)
        {
            maxgap = max(maxgap, nums[i] - nums[i - 1]);
        }
        return maxgap;
    }
};
```