1 Star 0 Fork 1

陈鹏/leecode with labuladong

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
912.排序数组.cpp 2.18 KB
一键复制 编辑 原始数据 按行查看 历史
陈鹏 提交于 2022-07-15 13:31 . BST(删插构造)、快排快选
/*
* @lc app=leetcode.cn id=912 lang=cpp
*
* [912] 排序数组
*/
// @lc code=start
// 归并排序
// class Solution {
// private:
// vector<int> temp;
// void merge(vector<int>& nums, int lo, int mid, int hi) {
// for (int i = lo; i <= hi; i++) {
// temp[i] = nums[i];
// }
// int i = lo, j = mid + 1;
// for (int p = lo; p <= hi; p++) {
// if (i == mid + 1) {
// nums[p] = temp[j++];
// } else if (j == hi + 1) {
// nums[p] = temp[i++];
// } else if (temp[i] > temp[j]) {
// nums[p] = temp[j++];
// } else {
// nums[p] = temp[i++];
// }
// }
// }
// void sort(vector<int>& nums, int lo, int hi) {
// if (lo == hi) return;
// int mid = lo + (hi - lo) / 2;
// sort(nums, lo, mid);
// sort(nums, mid + 1, hi);
// merge(nums, lo, mid, hi);
// }
// public:
// vector<int> sortArray(vector<int>& nums) {
// temp.resize(nums.size(), 0);
// sort(nums, 0, nums.size() - 1);
// return nums;
// }
// };
//快速排序
class Solution {
private:
int partition(vector<int>& nums, int lo, int hi) {
int pivot = nums[hi];
int i = lo - 1;
for(int j = lo; j <= hi - 1; ++j) {
if (nums[j] <= pivot) {
i += 1;
swap(nums[i], nums[j]);
}
}
swap(nums[i+1], nums[hi]);
return i+1;
}
int randomized_partition(vector<int>& nums, int lo, int hi) {
int i = rand() % (hi - lo + 1) + lo; //随机选取主元
swap(nums[i], nums[hi]);
return partition(nums, lo, hi);
}
void randomized_quicksort(vector<int>& nums, int lo, int hi) {
if (lo < hi) {
int pos = randomized_partition(nums, lo, hi);
randomized_quicksort(nums, lo, pos - 1);
randomized_quicksort(nums, pos + 1, hi);
}
}
public:
vector<int> sortArray(vector<int>& nums) {
srand((unsigned)time(NULL));
randomized_quicksort(nums, 0, (int)nums.size()-1);
return nums;
}
};
// @lc code=end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Chan1998/leecode-with-labuladong.git
git@gitee.com:Chan1998/leecode-with-labuladong.git
Chan1998
leecode-with-labuladong
leecode with labuladong
master

搜索帮助