Leetcode: 912. 排序数组

本文介绍了在处理特定问题时,C++中的快速排序和插入排序表现不佳,可能导致超时。作者提供了一个Solution类,通过改进排序方法,优化了sortArray函数以提高性能并避免超时问题。
摘要由CSDN通过智能技术生成

考察排序算法,但是系统判定,快排和插入哪个都不好使,会超时,最后库函数提交通过

#include <iostream>
#include <vector>

using namespace std;

// class Solution {
// public:
//     vector<int> sortArray(vector<int>& nums) {
//         for (int i = 1; i < nums.size(); i++){
//             int temp = nums[i];
//             int j = i;
//             while (temp < nums[j - 1] && j > 0){
//                 nums[j] = nums[j - 1];
//                 j--;
//             }
//             nums[j] = temp;
//         }
//         return nums;
//     }
// };

class Solution {
public:
    int Apart (vector<int>& nums, int left, int right) {
        int index = left;
        while (left < right){
            while (left < right) {
                if (nums[right] < nums[index]){
                    swap(nums[right], nums[index]);
                    index = right;
                    left++;
                    break;
                }
                else {
                    right--;
                }
            }
            while (left < right) {
                if (nums[left] > nums[index]){
                    swap(nums[left], nums[index]);
                    index = left;
                    right--;
                    break;
                }
                else {
                    left++;
                }
            }
        }
        return index;
    }

    vector<int> sort(vector<int>& nums, int left, int right) {
        if (left < right) {
            int index = Apart(nums, left, right);
            sort(nums, left, index);
            sort(nums, index + 1, right);
        }
        return nums;
    }

    vector<int> sortArray(vector<int>& nums) {
        return sort(nums, 0, nums.size() - 1);
    }
};

int main() {
    Solution s;
    vector<int> nums = {5, 3, 2, 1};
    vector<int> sortedNums = s.sortArray(nums);
    for (auto i : sortedNums)
        cout << i << " ";

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值