首先上代码. #include <iostream> using namespace std; int arr[11]; /*两个序列合并成一个序列.一共三个序列,所以用 3 根指针来处理. i 是 low 到 mid 这个序列下标 序列 1 j 是 mid+1 到 high 这个序列下标 序列 2 k 代表新序列的下表 序列 3 */ void merge(int a[], int low, int mid, int high) { int i = low, j = mid+1, k =lo…
/** *归并排序思路:分治法思想 O(nlogn) * 把数组一分为二,二分为四 * 四和为二,二和为一 * */ /** * 归并排序主方法 *@params 待排序的数组 *@params 初始位置 *@params 最终位置 */ public class MergeSort { public static void mergeSort(int[] resouceArr, int begin , int end ) { if ( begin < end ) { int middle =…
链接:https://leetcode.com/tag/divide-and-conquer/ [4]Median of Two Sorted Arrays [23]Merge k Sorted Lists [53]Maximum Subarray (2019年1月23日, 谷歌tag复习) 最大子段和. 题解: follow up 是divide and conquer If you have figured out the O(n) solution, try coding another…