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

算法学习步骤

时间:2017-07-27 16:38:48      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:static   策略   ati   代码   插入排序   规律   sys   --   nbsp   

画图写出策略,然后每个步骤都用最简单的代码写出来,总结规律

 

插入排序算法

package a;

public class ChaRuPaiXu {
public static void main(String[] args) {
int[] nums={24,3,51,12,6,4,5,34,23,1,2};
for(int i=1;i<nums.length;i++)
{
int temp=nums[i];
int j=0;
for(j=i-1;j>=0;j--)
{
if(nums[j]>temp){
nums[j+1]=nums[j];
}
else{
break;
}
}
nums[j+1]=temp;
}
for(int i=0;i<nums.length;i++)
System.out.print(nums[i]+" ");
}
}

算法学习步骤

标签:static   策略   ati   代码   插入排序   规律   sys   --   nbsp   

原文地址:http://www.cnblogs.com/cxj123/p/7245507.html

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