码迷,mamicode.com
首页 > 编程语言 > 详细

两种插入排序算法java实现

时间:2017-08-30 23:48:15      阅读:360      评论:0      收藏:0      [点我收藏+]

标签:java   []   运行   java实现   i++   直接插入排序   print   直接插入   折半插入排序   

两种方法都编译运行通过,可以当做排序类直接使用。

折半插入排序:

public class Sort1 {
    public static void main(String[] args) {
        InsertSort sort = new InsertSort();
        sort.InsertSort();
        int[] arr = sort.getarr();
        System.out.println();
        System.out.println("排序之后:");
        for (int ar : arr) {
            System.out.print(ar + " ");
        }

    }
}

class InsertSort {
    int[] a = { 49, 38, 65, 97, 76, 13, 27, 49, 78, 34, 12, 64, 1 };
    int i,high,low,mid;
    int temp;
  
    public int[] getarr() {
        return a;
    }

    public void InsertSort() {
        System.out.println("排序之前:");
        for (int m : a) {
            System.out.print(m + " ");
        }
        for(int i=1;i<a.length;i++)
        {
            temp=a[i];
            low = 0;
            high = i-1;
            while(low<=high)
            {
                mid = (low + high)/2;
                if (temp<a[mid])
                {
                    high = mid -1;
                }
                else
                {
                    low = mid +1;
                }
            }
            for(int j=i-1;j>=high+1;j--)
            {
                a[j+1] = a[j];
            }
               a[high+1] = temp;
        }
    }
}

 

直接插入排序:

public class Sort1 {
    public static void main(String[] args) {
        InsertSort sort = new InsertSort();
        sort.InsertSort();
        int[] arr = sort.getarr();
        System.out.println();
        System.out.println("排序之后:");
        for (int ar : arr) {
            System.out.print(ar + " ");
        }

    }
}

class InsertSort {
    int[] a = { 49, 38, 65, 97, 76, 13, 27, 49, 78, 34, 12, 64, 1 };

    public int[] getarr() {
        return a;
    }

    public void InsertSort() {
        System.out.println("排序之前:");
        for (int m : a) {
            System.out.print(m + " ");
        }
        for (int i = 1; i < a.length; i++) {
            int temp = a[i];
            int j;
            for (j = i - 1; j >= 0 && a[j] > temp; j--) {
                a[j + 1] = a[j];
            }
            a[j + 1] = temp;
        }
    }
}

两种插入排序算法java实现

标签:java   []   运行   java实现   i++   直接插入排序   print   直接插入   折半插入排序   

原文地址:http://www.cnblogs.com/2206411193qzb/p/7455652.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!