常见排序算法(一) MergeSort

算法思想灰常重要,常见的用到分治思想的算法包括快速排序,归并,二分搜搜,大整数乘法等(参考 http://blog.csdn.net/com_stu_zhang/article/details/7233761,归纳很到位)

简单用归并对一个数组排序

思路: 简单来说对一个数组,只要他的左右两部分都是有序的,那么简单合并就ok了,那么左右两部分可以进一步划分各自的左右两部分----明显就是要递归了

算法:归并排序

1. 将数组一分为二,subArray1 和subArray2

2. 归并排序subArray1

3.归并排序subArray2

4. 合并 subArray1 subArray2

从合并subArray 这样简单的步骤入手

    //By default. Ascending sort
    public int [] mergeArray(int[] a, int []b){
        int []merge = new int[a.length+b.length];

        int i = 0;
        int j = 0;
        int index  = 0;
        while(i<a.length && j < b.length){

            if(a[i] <= b[j]){
                merge[index ++] = a [i ++];

            }else if(a[i] > b[j]){
                merge[index ++] = b [j ++];
            }
        }

        //if  array a go to the end ,copy array b
        if(i >= a.length){
            while (j < b.length){
                merge[index ++] = b [j ++];
            }
        }
        //else copy array a
        if( j >= b.length){
            while ( i <a.length){
                merge[index ++] = a [i ++];
            }
        }

        return merge;
    }

接下来是写归并排序本身了,明显就是有递归调用,先只考虑简单实现,不考虑效率啊什么的

/***
 * Merge Sort-----Divide and Conquer http://blog.csdn.net/com_stu_zhang/article/details/7233761
 *           -----from step2 and step 3,we can find recursive
 * Step 1://divide into subarray1 and sub array2
 * Step 2://MergeSort sub array1
 * Step 3://MergeSort sub array2
 * Step 4://Merge sub array1 and sub array2
 * @param a
 * @param start
 * @param end
 */

    //Divide---merge
    public void divideAndMerge(int[] a){
        int mid  = a.length / 2;
        new int left[] ;//copy  0 to mid
        new int right[];//copy mid +1 to a.length -1

        if( a.length == 1){
            return ;
        }else{
            divideAndMerge(left);
            divideAndMerge(right);
            mergeArray(left,right);
        }
    }

然后我们就要考虑性能的问题了,以上的代码块明显需要不断new新的子数组存储被分治出来的小数组,而new操作是比较耗性能的

考虑到java中对象都是传reference,而我们的合并操作其实只要提供数组的下标位置就可以知道是要合并哪个子数组(注意归并的一定相邻子数组,木有跳跃的情况),只需要提供起始下标就可以分成俩子数组合并,同时给一个临时数组用于排序的临时存储空间够用了,于是归并排序的参数以及合并方法的参数都有了

 1     public void mergeArrayNew(int[] a, int start_pos,int end_pos,int[] tmp){
 2         int mid_pos  = (end_pos - start_pos) /2 + start_pos;
 3         int i = start_pos;
 4         int j = mid_pos + 1;
 5         int index = start_pos;
 6
 7         while( i <= mid_pos && j <= end_pos){
 8             if(a[i] <= a[j]){
 9                 tmp[index] = a[i];
10                 i++;
11                 index ++;
12             }else {
13                 tmp[index] = a [j];
14                 j++;
15                 index ++;
16             }
17         }
18
19         if(j >  end_pos){
20             while(i <= mid_pos ){
21                 tmp[index] = a[i];
22                 i++;
23                 index ++;
24             }
25         }
26         if(i > mid_pos ){
27             while ( j <= end_pos){
28                 tmp[index] = a [j];
29                 j++;
30                 index ++;
31             }
32         }
33
34         //attention!!!
35         for(int copy = start_pos;copy<=end_pos;copy++){
36             a[copy] = tmp[copy];
37         }
38
39     }
40
41     //Divide---merge
42     public void divideAndMergeNew(int[] a,int start_pos,int end_pos,int[] tmp){
43         int mid_pos  = (end_pos - start_pos) /2 + start_pos;
44
45         if( start_pos == end_pos){
46             return ;
47         }else{
48             divideAndMergeNew(a,start_pos,mid_pos,tmp);
49             divideAndMergeNew(a,mid_pos + 1,end_pos,tmp);
50             mergeArrayNew(a,start_pos,end_pos,tmp);
51         }
52     }

常见排序算法(一) MergeSort,布布扣,bubuko.com

时间: 2024-10-01 22:09:36

常见排序算法(一) MergeSort的相关文章

常见排序算法(冒泡、选择、插入、快速、归并C++实现)

常见排序算法(冒泡.选择.插入.快速.归并C++实现) #include <iostream> using namespace std; // 冒泡排序 void bubbleSort (int data[], size_t size) { for (size_t i = 0; i < size - 1; ++i) { bool ordered = true; for (size_t j = 0; j < size - 1 - i; ++j) if (data[j+1] <

几种常见排序算法

几种常见排序算法 几种常见排序算法 写在前面 基础介绍 初级排序算法 selection sort选择排序 insertion sort插入排序 ShellSort希尔排序 shuffing不是排序算法 merge sort归并排序 Abstract in-place merge原地归并的抽象方法 Top-down mergesort自顶向下的归并排序 Bottom-up mergesort自底向上的归并排序 quicksort 三向切分的快速排序 Heapsort堆排序 总结和比较 命题 本文

常见排序算法总结(java实现)

所谓排序,就是使一串记录,按照其中的某个或某些关键字的大小,递增或递减的排列起来的操作.常见的排序算法有选择排序,插入排序,希尔排序,归并排序和快速排序 由于在排序的过程中不可避免的要涉及到比较和交换,所以将他们抽取为两个单独的函数,如下所示 //为了排序代码的通用性,这里假定待排序的元素实现了Comparable接口 private static boolean less(Comparable v ,Comparable w){ return v.compareTo(w)<0; } priva

常见排序算法(JS版)

常见排序算法(JS版)包括: 内置排序,冒泡排序,选择排序,插入排序,希尔排序,快速排序(递归 & 堆栈),归并排序,堆排序,以及分析每种排序算法的执行时间. index.html 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>twobin 常见排序算法 (JS版) </title> 5 <meta http-equiv="content-type" content=&

【整理】常见排序算法及其时间复杂度总结

原文出处: 1. 白话经典算法系列之八 MoreWindows白话经典算法之七大排序总结篇 2. 面试常用算法总结--排序算法(java版) 3. 常见排序算法小结 本篇主要整理了冒泡排序,直接插入排序,直接选择排序,希尔排序,归并排序,快速排序,堆排序七种常见算法,是从上面三篇博文中摘抄整理的,非原创. 一.冒泡排序 主要思路是: 通过交换相邻的两个数变成小数在前大数在后,这样每次遍历后,最大的数就"沉"到最后面了.重复N次即可以使数组有序. 冒泡排序改进1: 在某次遍历中,如果没有

常见排序算法(java实现)

常见排序算法介绍 冒泡排序 代码: public class BubbleSort { public static void sort(int[] array) { int tValue; for (int i = 0; i < array.length; i++) { for (int j = i; j < array.length; j++) { if (array[i] > array[j]) { tValue = array[i]; array[i] = array[j]; ar

第六章 常见排序算法

上章回顾 二叉树的定义 树深度的定义 什么样的二叉树是满二叉树 中序遍历的规则 [email protected]:Kevin-Dfg/[email protected]:Kevin-Dfg/Data-Structures-and-Algorithm-Analysis-in-C.git 第六章 第六章 常见排序算法 常见排序算法 [email protected]:Kevin-Dfg/[email protected]:Kevin-Dfg/Data-Structures-and-Algorith

十种常见排序算法

1.常见算法分类 十种常见排序算法一般分为以下几种: (1)非线性时间比较类排序:交换类排序(快速排序和冒泡排序).插入类排序(简单插入排序和希尔排序).选择类排序(简单选择排序和堆排序).归并排序(二路归并排序和多路归并排序): (2)线性时间非比较类排序:计数排序.基数排序和桶排序. 总结: (1)在比较类排序中,归并排序号称最快,其次是快速排序和堆排序,两者不相伯仲,但是有一点需要注意,数据初始排序状态对堆排序不会产生太大的影响,而快速排序却恰恰相反. (2)线性时间非比较类排序一般要优于

常见排序算法(PHP实现)

function InsertSort($arr){ $num = count($arr); for($i = 1; $i < $num; $i++){ $key = $arr[$i]; for($j = $i - 1; $j >= 0; $j--){ if($arr[$j] > $key){ $arr[$j + 1] = $arr[$j]; $arr[$j] = $key; } } } return $arr; } function BubbleSort($arr){ $num = c