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

插入排序

时间:2017-08-31 14:21:02      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:public   memory   class   --   insert   bre   mem   sort   log   

 1 public class Solution
 2 {
 3     public void insertSort(int[] data)
 4     {
 5         for(int i = 1; i < data.length; i ++)
 6         {
 7             for(int j = i - 1; j >= 0; j --)
 8             {
 9                 if(data[j] > data[j + 1])
10                 {
11                     exchange(data, j, j + 1);
12                 }
13                 else
14                 {
15                     break;
16                 }
17             }
18         }
19     }
20     
21     public void exchange(int[] data, int m, int n)
22     {
23         int memory = data[m];
24         data[m] = data[n];
25         data[n] = memory;
26     }
27     
28 }

 

插入排序

标签:public   memory   class   --   insert   bre   mem   sort   log   

原文地址:http://www.cnblogs.com/StringBuilder/p/7457774.html

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