solution.md 7.0 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 排序数组
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3 4 5 6 7 8 9 10 11 12
<p>给你一个整数数组&nbsp;<code>nums</code>,请你将该数组升序排列。</p>

<p>&nbsp;</p>

<ol>
</ol>

<p><strong>示例 1:</strong></p>

<pre><strong>输入:</strong>nums = [5,2,3,1]
每日一练社区's avatar
每日一练社区 已提交
13

每日一练社区's avatar
每日一练社区 已提交
14 15 16 17 18 19
<strong>输出:</strong>[1,2,3,5]
</pre>

<p><strong>示例 2:</strong></p>

<pre><strong>输入:</strong>nums = [5,1,1,2,0,0]
每日一练社区's avatar
每日一练社区 已提交
20

每日一练社区's avatar
每日一练社区 已提交
21 22 23 24 25 26 27 28 29 30 31
<strong>输出:</strong>[0,0,1,1,2,5]
</pre>

<p>&nbsp;</p>

<p><strong>提示:</strong></p>

<ol>
	<li><code>1 &lt;= nums.length &lt;= 50000</code></li>
	<li><code>-50000 &lt;= nums[i] &lt;= 50000</code></li>
</ol>
每日一练社区's avatar
每日一练社区 已提交
32
<p>以下<span style="color:red">错误</span>的选项是?</p>
每日一练社区's avatar
每日一练社区 已提交
33 34

## aop
F
fix bug  
feilong 已提交
35

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

每日一练社区's avatar
每日一练社区 已提交
38
```c
每日一练社区's avatar
每日一练社区 已提交
39 40 41
#include <bits/stdc++.h>
using namespace std;
```
每日一练社区's avatar
每日一练社区 已提交
42

每日一练社区's avatar
每日一练社区 已提交
43
### after
F
fix bug  
feilong 已提交
44

每日一练社区's avatar
每日一练社区 已提交
45
```c
每日一练社区's avatar
每日一练社区 已提交
46 47 48 49 50 51 52 53 54 55 56 57 58
int main()
{
    Solution sol;
    vector<int> res;
    vector<int> nums = {5, 1, 1, 2, 0, 0};
    res = sol.sortArray(nums);
    for (auto i : res)
        cout << i << " ";
    return 0;
}
```

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

每日一练社区's avatar
每日一练社区 已提交
60
```c
每日一练社区's avatar
每日一练社区 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 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
class Solution
{
public:
    void make_max_heap(vector<int> &nums, int len)
    {
        for (int i = (len / 2); i >= 0; --i)
            max_heap_fixed(nums, i, len);
    }
    void max_heap_fixed(vector<int> &nums, int cur_idx, int len)
    {
        int lchild = (cur_idx << 1) + 1, rchild = (cur_idx << 1) + 2;
        while (lchild < len)
        {
            int large = cur_idx;
            if (lchild <= len && nums[lchild] > nums[cur_idx])
            {
                large = lchild;
            }
            if (rchild <= len && nums[rchild] > nums[large])
            {
                large = rchild;
            }

            if (large != cur_idx)
            {
                swap(nums[cur_idx], nums[large]);
                cur_idx = large;
                lchild = cur_idx << 1;
                rchild = cur_idx << 2;
            }
            else
                break;
        }
    }
    vector<int> sortArray(vector<int> &nums)
    {
        int length = nums.size() - 1;
        make_max_heap(nums, length);
        for (int i = length; i > 0; --i)
        {
            swap(nums[0], nums[i]);
            max_heap_fixed(nums, 0, i - 1);
        }
        return nums;
    }
};
```
## 选项

F
fix bug  
feilong 已提交
110

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

每日一练社区's avatar
每日一练社区 已提交
113
```c
每日一练社区's avatar
每日一练社区 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
class Solution
{
public:
    vector<int> sortArray(vector<int> &nums)
    {
        if (nums.size() == 1)
            return nums;
        for (int i = 1; i < nums.size(); ++i)
        {
            int preIdx = i - 1;
            int curVal = nums[i];
            while (preIdx >= 0 && curVal > nums[preIdx])
            {
                nums[preIdx + 1] = nums[preIdx];
                preIdx--;
            }
            nums[preIdx + 1] = curVal;
        }
        reverse(nums.begin(), nums.end());
        return nums;
    }
};
```

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

每日一练社区's avatar
每日一练社区 已提交
140
```c
每日一练社区's avatar
每日一练社区 已提交
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 174
class Solution
{
public:
    void swap(int &a, int &b)
    {
        int tmp = a;
        a = b;
        b = tmp;
    }
    vector<int> sortArray(vector<int> &nums)
    {
        if (nums.size() == 1)
            return nums;
        for (int i = 0; i < nums.size() - 1; ++i)
        {
            int minIndex = i;
            for (int j = i + 1; j < nums.size(); ++j)
            {
                if (nums[i] > nums[j])
                {
                    minIndex = j;
                }
            }
            if (minIndex != i)
            {
                swap(nums[minIndex], nums[i]);
            }
        }
        return nums;
    }
};
```

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

每日一练社区's avatar
每日一练社区 已提交
176
```c
每日一练社区's avatar
每日一练社区 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
class Solution
{
public:
    vector<int> sortArray(vector<int> &nums)
    {
        if (nums.size() == 1)
            return nums;
        int tmp;
        bool sorted = true;
        for (int i = 0; i < nums.size() - 1; ++i)
        {
            for (int j = nums.size() - 1; j > i; --j)
            {
                if (nums[j - 1] > nums[j])
                {
                    tmp = nums[j - 1];
                    nums[j - 1] = nums[j];
                    nums[j] = tmp;
                    sorted = false;
                }
            }
            if (sorted)
                return nums;
        }
        return nums;
    }
};
```

### D
F
fix bug  
feilong 已提交
207

每日一练社区's avatar
每日一练社区 已提交
208
```c
每日一练社区's avatar
每日一练社区 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
class Solution
{
public:
    vector<int> sortArray(vector<int> &nums)
    {
        int length = nums.size();
        if (length == 1)
            return nums;
        int inc = length;
        while (true)
        {
            inc /= 2;
            for (int k = 0; k < inc; ++k)
                for (int i = k + inc; i < length; i += inc)
                {
                    int preIdx = i - inc;
                    int curVal = nums[i];
                    while (preIdx >= 0 && curVal < nums[preIdx])
                    {
                        nums[preIdx + inc] = nums[preIdx];
                        preIdx -= inc;
                    }
                    nums[preIdx + inc] = curVal;
                }
            if (inc == 1)
                break;
        }

        return nums;
    }
};
```

### E
F
fix bug  
feilong 已提交
243

每日一练社区's avatar
每日一练社区 已提交
244
```c
每日一练社区's avatar
每日一练社区 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
class Solution
{
    vector<int> nums;

public:
    void merge(int left, int right)
    {
        if (left >= right)
        {
            return;
        }
        int mid = (left + right) / 2;
        merge(left, mid);
        merge(mid + 1, right);
        int i = left, j = mid + 1;
        vector<int> tmp;
        while (i <= mid && j <= right)
        {
            if (nums[i] < nums[j])
            {
                tmp.push_back(nums[i]);
                i++;
            }
            else
            {
                tmp.push_back(nums[j]);
                j++;
            }
        }
        while (i <= mid)
        {
            tmp.push_back(nums[i]);
            i++;
        }
        while (j <= right)
        {
            tmp.push_back(nums[j]);
            j++;
        }
        for (i = 0; i < right - left + 1; ++i)
            nums[i + left] = tmp[i];
    }
    vector<int> sortArray(vector<int> &nums)
    {
        this->nums = nums;
        int length = nums.size();
        if (length == 1)
            return nums;
        merge(0, nums.size() - 1);
        return this->nums;
    }
};
```


### F
F
fix bug  
feilong 已提交
301

每日一练社区's avatar
每日一练社区 已提交
302
```c
每日一练社区's avatar
每日一练社区 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
class Solution
{
public:
    int partion(vector<int> &nums, int left, int right)
    {
        int pivot = nums[right];
        int i = left, j;
        for (j = left; j < right; ++j)
        {
            if (nums[j] <= pivot)
            {
                swap(nums[i], nums[j]);
                i++;
            }
        }
        swap(nums[i], nums[right]);
        return i;
    }
    int random_partion(vector<int> &nums, int left, int right)
    {
        int randIdx = rand() % (right - left + 1) + left;
        swap(nums[randIdx], nums[right]);
        return partion(nums, left, right);
    }
    void random_quick_sort(vector<int> &nums, int left, int right)
    {
        if (left < right)
        {
            int pivot = random_partion(nums, left, right);
            random_quick_sort(nums, left, pivot - 1);
            random_quick_sort(nums, pivot + 1, right);
        }
    }
    vector<int> sortArray(vector<int> &nums)
    {
        int length = nums.size();
        if (length == 1)
            return nums;
        srand(time(NULL));
        random_quick_sort(nums, 0, length - 1);
        return nums;
    }
};
```