java实现直接插入排序
Posted suntree
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java实现直接插入排序相关的知识,希望对你有一定的参考价值。
1 package com.example.demo; 2 3 public class InsertSort 4 public void insertSort(int[] arr) 5 int i, j; 6 for (i = 0; i < arr.length; i++) 7 int temp = arr[i];//temp为哨兵 8 for (j = i - 1; j >= 0 && arr[j] > temp; j--) 9 arr[j + 1] = arr[j];//逐个向后移 10 11 arr[j + 1] = temp;//temp插入位置 12 13 for (int k : arr) 14 System.out.print(k + " "); 15 16 17 18 public static void main(String args[]) 19 int[] arr = 12, 3, 4, 5, 6, 9, 1, 7 ; 20 InsertSort sort = new InsertSort(); 21 sort.insertSort(arr); 22 23 24
以上是关于java实现直接插入排序的主要内容,如果未能解决你的问题,请参考以下文章