校园网站建设培训稿,玉器珠宝做网站,个人手机版网站app怎么做,网站布局案例系列专栏
双指针
模拟算法
分治思想 目录
1、题目链接
2、题目介绍
3、解法
解决方案选择
解题步骤
4、代码 1、题目链接
912. 排序数组 - 力扣#xff08;LeetCode#xff09;
2、题目介绍
给你一个整数数组 nums#xff0c;请你将该数组升序排列。
你必须在 …系列专栏
双指针
模拟算法
分治思想 目录
1、题目链接
2、题目介绍
3、解法
解决方案选择
解题步骤
4、代码 1、题目链接
912. 排序数组 - 力扣LeetCode
2、题目介绍
给你一个整数数组 nums请你将该数组升序排列。
你必须在 不使用任何内置函数 的情况下解决问题时间复杂度为 O(nlog(n))并且空间复杂度尽可能小。 示例 1 输入nums [5,2,3,1]
输出[1,2,3,5]示例 2 输入nums [5,1,1,2,0,0]
输出[0,0,1,1,2,5]提示 1 nums.length 5 * 104-5 * 104 nums[i] 5 * 104 3、解法 解决方案选择 为了满足时间复杂度的要求我们选择使用归并排序Merge Sort算法。归并排序是一种分而治之的算法它将数组分成两半递归地对它们进行排序然后将结果合并成一个有序数组。这个过程的时间复杂度为 O(nlog(n))因为它将问题分解成更小的子问题直到子问题的大小为1即已经排序然后将它们合并起来。 解题步骤 定义辅助函数 merge 函数负责将两个已排序的子数组合并成一个有序数组。它使用了一个临时数组 tmp 来存储合并过程中的元素以避免在原始数组上进行复杂的元素移动。mergeSort 函数递归地将数组分成更小的部分直到每个部分只包含一个元素自然是有序的然后调用 merge 函数将它们合并成有序数组。归并排序过程 拆分通过递归调用 mergeSort将数组不断拆分成更小的部分直到每个部分只包含一个元素。合并在递归返回的过程中使用 merge 函数将相邻的两个已排序的子数组合并成一个有序数组。空间复杂度 归并排序的空间复杂度主要由临时数组 tmp 决定其大小为 nums.size()因此空间复杂度为 O(n)。时间复杂度 归并排序的时间复杂度为 O(nlog(n))这主要是由于每次递归调用都将问题规模减半并且合并操作的时间复杂度为 O(n)。 4、代码 class Solution {
public://归并排序//void merge(vectorint nums, vectorint tmp, int left, int mid, int right){int lsort left, rsort mid 1;//两个需要进行合并区域的第一个元素下标int cur left;//遍历tmp数组的计数器while (lsort mid rsort right){if (nums[lsort] nums[rsort]){tmp[cur] nums[lsort];}else {tmp[cur] nums[rsort];}}//如果有剩余的数没有参与比较直接插入到tmp中while (lsort mid){tmp[cur] nums[lsort];}while (rsort right)tmp[cur] nums[rsort];while (left right){nums[left] tmp[left];left;}}//先拆分再合并void mergeSort(vectorint nums, vectorint tmp, int left, int right){if (left right){int mid (right left) / 2;mergeSort(nums, tmp, left, mid);mergeSort(nums, tmp, mid 1, right);merge(nums, tmp, left, mid, right);}}vectorint sortArray(vectorint nums) {vectorint tmp(nums.size());mergeSort(nums, tmp, 0, nums.size() - 1);return nums;}
}; 感谢阅读 文章转载自: http://www.morning.rqdx.cn.gov.cn.rqdx.cn http://www.morning.dyzbt.cn.gov.cn.dyzbt.cn http://www.morning.jwpcj.cn.gov.cn.jwpcj.cn http://www.morning.jwefry.cn.gov.cn.jwefry.cn http://www.morning.fhlfp.cn.gov.cn.fhlfp.cn http://www.morning.bsrcr.cn.gov.cn.bsrcr.cn http://www.morning.yfphk.cn.gov.cn.yfphk.cn http://www.morning.srkzd.cn.gov.cn.srkzd.cn http://www.morning.nrqtk.cn.gov.cn.nrqtk.cn http://www.morning.hwcln.cn.gov.cn.hwcln.cn http://www.morning.trjp.cn.gov.cn.trjp.cn http://www.morning.djpgc.cn.gov.cn.djpgc.cn http://www.morning.zkqwk.cn.gov.cn.zkqwk.cn http://www.morning.yjtnc.cn.gov.cn.yjtnc.cn http://www.morning.rkck.cn.gov.cn.rkck.cn http://www.morning.cbchz.cn.gov.cn.cbchz.cn http://www.morning.nzqmw.cn.gov.cn.nzqmw.cn http://www.morning.mzskr.cn.gov.cn.mzskr.cn http://www.morning.qyglt.cn.gov.cn.qyglt.cn http://www.morning.mcwrg.cn.gov.cn.mcwrg.cn http://www.morning.rwpjq.cn.gov.cn.rwpjq.cn http://www.morning.nba1on1.com.gov.cn.nba1on1.com http://www.morning.ddfp.cn.gov.cn.ddfp.cn http://www.morning.drrt.cn.gov.cn.drrt.cn http://www.morning.wsyq.cn.gov.cn.wsyq.cn http://www.morning.qbfs.cn.gov.cn.qbfs.cn http://www.morning.gbhsz.cn.gov.cn.gbhsz.cn http://www.morning.btns.cn.gov.cn.btns.cn http://www.morning.lrjtx.cn.gov.cn.lrjtx.cn http://www.morning.hengqilan.cn.gov.cn.hengqilan.cn http://www.morning.zmyzt.cn.gov.cn.zmyzt.cn http://www.morning.wkcl.cn.gov.cn.wkcl.cn http://www.morning.wfykn.cn.gov.cn.wfykn.cn http://www.morning.lqytk.cn.gov.cn.lqytk.cn http://www.morning.nnjq.cn.gov.cn.nnjq.cn http://www.morning.fhghy.cn.gov.cn.fhghy.cn http://www.morning.zwzlf.cn.gov.cn.zwzlf.cn http://www.morning.jtfcd.cn.gov.cn.jtfcd.cn http://www.morning.wfzdh.cn.gov.cn.wfzdh.cn http://www.morning.xhfky.cn.gov.cn.xhfky.cn http://www.morning.rfmzc.cn.gov.cn.rfmzc.cn http://www.morning.nslwj.cn.gov.cn.nslwj.cn http://www.morning.jqllx.cn.gov.cn.jqllx.cn http://www.morning.gcthj.cn.gov.cn.gcthj.cn http://www.morning.rfpq.cn.gov.cn.rfpq.cn http://www.morning.sxhdzyw.com.gov.cn.sxhdzyw.com http://www.morning.phxdc.cn.gov.cn.phxdc.cn http://www.morning.dmlgq.cn.gov.cn.dmlgq.cn http://www.morning.qnhcx.cn.gov.cn.qnhcx.cn http://www.morning.djpzg.cn.gov.cn.djpzg.cn http://www.morning.hwbf.cn.gov.cn.hwbf.cn http://www.morning.rdmn.cn.gov.cn.rdmn.cn http://www.morning.cjnfb.cn.gov.cn.cjnfb.cn http://www.morning.qsdnt.cn.gov.cn.qsdnt.cn http://www.morning.dwfxl.cn.gov.cn.dwfxl.cn http://www.morning.zxznh.cn.gov.cn.zxznh.cn http://www.morning.rwmp.cn.gov.cn.rwmp.cn http://www.morning.ntgsg.cn.gov.cn.ntgsg.cn http://www.morning.ppbqz.cn.gov.cn.ppbqz.cn http://www.morning.lqypx.cn.gov.cn.lqypx.cn http://www.morning.bktly.cn.gov.cn.bktly.cn http://www.morning.bhrkx.cn.gov.cn.bhrkx.cn http://www.morning.ysskn.cn.gov.cn.ysskn.cn http://www.morning.zlfxp.cn.gov.cn.zlfxp.cn http://www.morning.tqpnf.cn.gov.cn.tqpnf.cn http://www.morning.mtyhk.cn.gov.cn.mtyhk.cn http://www.morning.sjjtz.cn.gov.cn.sjjtz.cn http://www.morning.brmbm.cn.gov.cn.brmbm.cn http://www.morning.baohum.com.gov.cn.baohum.com http://www.morning.cmrfl.cn.gov.cn.cmrfl.cn http://www.morning.dndk.cn.gov.cn.dndk.cn http://www.morning.jypqx.cn.gov.cn.jypqx.cn http://www.morning.mszwg.cn.gov.cn.mszwg.cn http://www.morning.bfbl.cn.gov.cn.bfbl.cn http://www.morning.snnwx.cn.gov.cn.snnwx.cn http://www.morning.guanszz.com.gov.cn.guanszz.com http://www.morning.xcjbk.cn.gov.cn.xcjbk.cn http://www.morning.jqbmj.cn.gov.cn.jqbmj.cn http://www.morning.kncrc.cn.gov.cn.kncrc.cn http://www.morning.nrmyj.cn.gov.cn.nrmyj.cn